Token LazyHorseSurvivor
Overview CRC721
Total Supply:
1,448 Lazy Horse Survivor
Holders:
17 addresses
Transfers:
-
Contract:
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LazyHorseSurvivor
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-08 */ /** *Submitted for verification at Etherscan.io on 2022-09-05 */ /** *Submitted for verification at cronoscan.com on 2022-08-21 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: Jarheads.sol /** *Submitted for verification at cronoscan.com on 2022-07-05 */ // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File contracts/WithLimitedSupply.sol // pragma solidity ^0.8.4; /// @author Modified version of original code by 1001.digital /// @title A token tracker that limits the token supply and increments token IDs on each new mint. abstract contract WithLimitedSupply { // Keeps track of how many we have minted uint256 private _tokenCount; /// @dev The maximum count of tokens this token tracker will issue. uint256 private immutable _maxAvailableSupply; /// Instanciate the contract /// @param maxSupply_ how many tokens this collection should hold constructor(uint256 maxSupply_, uint256 reserved_) { _maxAvailableSupply = maxSupply_ - reserved_; } function maxAvailableSupply() public view returns (uint256) { return _maxAvailableSupply; } /// @dev Get the current token count /// @return the created token count /// TODO: if this is not required externally, does making it `public view` use unneccary gas? function tokenCount() public view returns (uint256) { return _tokenCount; } /// @dev Check whether tokens are still available /// @return the available token count function availableTokenCount() public view returns (uint256) { return maxAvailableSupply() - tokenCount(); } /// @dev Increment the token count and fetch the latest count /// @return the next token id function nextToken() internal virtual ensureAvailability returns (uint256) { return _tokenCount++; } /// @dev Check whether another token is still available modifier ensureAvailability() { require(availableTokenCount() > 0, 'No more tokens available'); _; } /// @param amount Check whether number of tokens are still available /// @dev Check whether tokens are still available modifier ensureAvailabilityFor(uint256 amount) { require( availableTokenCount() >= amount, 'Requested number of tokens not available' ); _; } } // File contracts/RandomlyAssigned.sol // pragma solidity ^0.8.4; /// @author Modified version of original code by 1001.digital /// @title Randomly assign tokenIDs from a given set of tokens. abstract contract RandomlyAssigned is WithLimitedSupply { // Used for random index assignment mapping(uint256 => uint256) private tokenMatrix; // The initial token ID uint256 private immutable startFrom; /// Instanciate the contract /// @param maxSupply_ how many tokens this collection should hold /// @param numReserved_ the number of tokens reserved whose IDs dont come from the randomizer constructor(uint256 maxSupply_, uint256 numReserved_) WithLimitedSupply(maxSupply_, numReserved_) { startFrom = numReserved_ + 1; } /// Get the next token ID /// @dev Randomly gets a new token ID and keeps track of the ones that are still available. /// @return the next token ID function nextToken() internal override returns (uint256) { uint256 maxIndex = maxAvailableSupply() - tokenCount(); uint256 random = uint256( keccak256( abi.encodePacked( msg.sender, block.coinbase, block.difficulty, block.gaslimit, block.timestamp ) ) ) % maxIndex; uint256 value = 0; if (tokenMatrix[random] == 0) { // If this matrix position is empty, set the value to the generated random number. value = random; } else { // Otherwise, use the previously stored number from the matrix. value = tokenMatrix[random]; } // If the last available tokenID is still unused... if (tokenMatrix[maxIndex - 1] == 0) { // ...store that ID in the current matrix position. tokenMatrix[random] = maxIndex - 1; } else { // ...otherwise copy over the stored number to the current matrix position. tokenMatrix[random] = tokenMatrix[maxIndex - 1]; } // Increment counts (ie. qty minted) super.nextToken(); return value + startFrom; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/CroArmyJackals3.sol abstract contract Army { function isMember(address user) public view virtual returns (bool); } pragma solidity ^0.8.0; contract LazyHorseSurvivor is ERC721Enumerable, Ownable, RandomlyAssigned { using Strings for uint256; using Counters for Counters.Counter; string public baseURI = "ipfs://Qmcq2Mr7C8FhxrTVqit38vJDAVx6gRSsJAURAuAXZcbzkk/"; string public baseExtension = ".json"; string public notRevealedUri; ERC721 public memberships; ERC721 public memberships1; uint256 public memberPrice = 9 ether; uint256 public whitelistPrice = 9 ether; uint256 public normalPrice = 10 ether; uint256 public maxSupply = 10000; uint256 public numReserved; Counters.Counter public _tokenIdCounter; bool public paused = false; bool public revealed = true; mapping(address => bool) whitelist; address private armyContract; address private TycoonOG; address private armyCoalition; // Pass the token address constructor(address _TycoonOG, address _armyContract, address _armyCoalition) ERC721("LazyHorseSurvivor", "Lazy Horse Survivor") RandomlyAssigned(maxSupply, numReserved){ memberships = ERC721(_TycoonOG); memberships1 = ERC721(_armyCoalition); armyContract = _armyContract; } function isTycoonOG(address _address) private view returns (bool) { return memberships.balanceOf(_address) > 0; } function isArmyCoalition(address _address) private view returns (bool) { return memberships1.balanceOf(_address) > 0; } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function mintCost(address _address) public view returns (uint256) { require(_address != address(0), "not address 0"); if (whitelistPrice <= memberPrice) { if (isWhiteList(_address)) { return whitelistPrice; } else if (isDiscount(_address)) { return memberPrice; } else { return normalPrice; } } else if (isDiscount(_address)) { return memberPrice; } else if (isWhiteList(_address)) { return whitelistPrice; } else { return normalPrice; } } // public function mint(uint256 _count) public payable { require(!paused, "the contract is paused"); require(_count > 0, "need to mint at least 1 NFT"); uint256 cost; cost = mintCost(msg.sender); if (msg.sender != owner()) { uint amountDue = cost * _count; require(msg.value >= amountDue, "insufficient funds"); } for (uint256 i = 1; i <= _count; i++) { _mintRandomId(msg.sender); } } function safeMint(address _to) internal { uint256 tokenId; _tokenIdCounter.increment(); tokenId = _tokenIdCounter.current(); require(tokenId <= maxSupply, "max NFT limit exceeded"); _safeMint(_to, tokenId); } // Checks is specific address is on the WL and returns a boolean value function isWhiteList(address _address) public view returns(bool) { return whitelist[_address]; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function _mintRandomId(address to) private { uint256 id = nextToken(); require(id > 0 && id <= maxSupply, "Mint not possible"); _safeMint(to, id); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function reveal() public onlyOwner { revealed = true; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function pause(bool _state) public onlyOwner { paused = _state; } function addWhiteList(address[] calldata addresses) public onlyOwner { for (uint i = 0; i < addresses.length; i++) { whitelist[addresses[i]] = true; } } function removeWhiteList(address[] calldata addresses) public onlyOwner { for (uint i = 0; i < addresses.length; i++) { whitelist[addresses[i]] = false; } } // Checks if a specified address should receive a discount function isDiscount(address _address) public view returns (bool) { if (isTycoonOG(_address) || hasArmy(_address) || isArmyCoalition(_address)) { return true; } else { return false; } } function setnormalPrice(uint256 _cost) external onlyOwner { normalPrice = _cost; } function setmemberPrice(uint256 _cost) external onlyOwner { memberPrice = _cost; } function setwhitelistPrice(uint256 _cost) external onlyOwner { whitelistPrice = _cost; } function hasArmy(address _address) internal view returns (bool) { uint balance = ERC20(armyContract).balanceOf(_address); if (balance >= 100000000000000000000000) { return true; } else { return false; } } function withdraw() public payable onlyOwner { // This will payout the owner the contract balance. // Do not remove this otherwise you will not be able to withdraw the funds. // ============================================================================= (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); // ============================================================================= } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_TycoonOG","type":"address"},{"internalType":"address","name":"_armyContract","type":"address"},{"internalType":"address","name":"_armyCoalition","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_tokenIdCounter","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isDiscount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAvailableSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"memberPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"memberships","outputs":[{"internalType":"contract ERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"memberships1","outputs":[{"internalType":"contract ERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"normalPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setmemberPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setnormalPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setwhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c060405260405180606001604052806036815260200162005d7660369139600d908051906020019062000035929190620003a8565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e908051906020019062000083929190620003a8565b50677ce66c50e2840000601255677ce66c50e2840000601355678ac7230489e800006014556127106015556000601860006101000a81548160ff0219169083151502179055506001601860016101000a81548160ff021916908315150217905550348015620000f157600080fd5b5060405162005dac38038062005dac83398181016040528101906200011791906200046f565b60155460165481816040518060400160405280601181526020017f4c617a79486f7273655375727669766f720000000000000000000000000000008152506040518060400160405280601381526020017f4c617a7920486f727365205375727669766f72000000000000000000000000008152508160009080519060200190620001a3929190620003a8565b508060019080519060200190620001bc929190620003a8565b505050620001df620001d3620002da60201b60201c565b620002e260201b60201c565b8082620001ed919062000528565b608081815250505050600181620002059190620004cb565b60a08181525050505082601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000654565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003b690620005a1565b90600052602060002090601f016020900481019282620003da576000855562000426565b82601f10620003f557805160ff191683800117855562000426565b8280016001018555821562000426579182015b828111156200042557825182559160200191906001019062000408565b5b50905062000435919062000439565b5090565b5b80821115620004545760008160009055506001016200043a565b5090565b60008151905062000469816200063a565b92915050565b6000806000606084860312156200048b576200048a62000635565b5b60006200049b8682870162000458565b9350506020620004ae8682870162000458565b9250506040620004c18682870162000458565b9150509250925092565b6000620004d88262000597565b9150620004e58362000597565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200051d576200051c620005d7565b5b828201905092915050565b6000620005358262000597565b9150620005428362000597565b925082821015620005585762000557620005d7565b5b828203905092915050565b6000620005708262000577565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006002820490506001821680620005ba57607f821691505b60208210811415620005d157620005d062000606565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620006458162000563565b81146200065157600080fd5b50565b60805160a0516156fc6200067a600039600061335c01526000610fb001526156fc6000f3fe6080604052600436106102e45760003560e01c8063715018a611610190578063b88d4fde116100dc578063da3ef23f11610095578063f2c4ce1e1161006f578063f2c4ce1e14610b22578063f2fde38b14610b4b578063f99031a714610b74578063fc1a1c3614610bb1576102e4565b8063da3ef23f14610a91578063e14ca35314610aba578063e985e9c514610ae5576102e4565b8063b88d4fde14610981578063b88fe6a3146109aa578063bcb96f52146109d5578063c6682862146109fe578063c87b56dd14610a29578063d5abeb0114610a66576102e4565b80639f181b5e11610149578063a22cb46511610123578063a22cb465146108d9578063a475b5dd14610902578063a526c5d914610919578063b150a6f614610956576102e4565b80639f181b5e14610869578063a029564414610894578063a0712d68146108bd576102e4565b8063715018a61461077d57806384c4bd4b146107945780638da5cb5b146107bf5780638dd94bba146107ea578063945ec9dd1461081357806395d89b411461083e576102e4565b80633ccfd60b1161024f5780635c975abb11610208578063636e746b116101e2578063636e746b146106bf5780636b150b13146106ea5780636c0360eb1461071557806370a0823114610740576102e4565b80635c975abb1461062e5780635e1045ec146106595780636352211e14610682576102e4565b80633ccfd60b1461052d57806342842e0e14610537578063438b6300146105605780634f6ccce71461059d57806351830227146105da57806355f804b314610605576102e4565b806315f91c18116102a157806315f91c181461040b57806318160ddd1461043657806323b872dd146104615780632acc659e1461048a5780632f745c59146104c75780633974579114610504576102e4565b806301ffc9a7146102e957806302329a291461032657806306fdde031461034f578063081812fc1461037a578063081c8c44146103b7578063095ea7b3146103e2575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b9190613fa1565b610bdc565b60405161031d919061475f565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190613f74565b610c56565b005b34801561035b57600080fd5b50610364610cef565b6040516103719190614795565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190614044565b610d81565b6040516103ae91906146d6565b60405180910390f35b3480156103c357600080fd5b506103cc610e06565b6040516103d99190614795565b60405180910390f35b3480156103ee57600080fd5b5061040960048036038101906104049190613ee7565b610e94565b005b34801561041757600080fd5b50610420610fac565b60405161042d9190614ab7565b60405180910390f35b34801561044257600080fd5b5061044b610fd4565b6040516104589190614ab7565b60405180910390f35b34801561046d57600080fd5b5061048860048036038101906104839190613dd1565b610fe1565b005b34801561049657600080fd5b506104b160048036038101906104ac9190613d64565b611041565b6040516104be9190614ab7565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190613ee7565b611132565b6040516104fb9190614ab7565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190613f27565b6111d7565b005b6105356112f8565b005b34801561054357600080fd5b5061055e60048036038101906105599190613dd1565b6113f4565b005b34801561056c57600080fd5b5061058760048036038101906105829190613d64565b611414565b604051610594919061473d565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf9190614044565b6114c2565b6040516105d19190614ab7565b60405180910390f35b3480156105e657600080fd5b506105ef611533565b6040516105fc919061475f565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190613ffb565b611546565b005b34801561063a57600080fd5b506106436115dc565b604051610650919061475f565b60405180910390f35b34801561066557600080fd5b50610680600480360381019061067b9190613f27565b6115ef565b005b34801561068e57600080fd5b506106a960048036038101906106a49190614044565b611710565b6040516106b691906146d6565b60405180910390f35b3480156106cb57600080fd5b506106d46117c2565b6040516106e19190614ab7565b60405180910390f35b3480156106f657600080fd5b506106ff6117c8565b60405161070c919061477a565b60405180910390f35b34801561072157600080fd5b5061072a6117ee565b6040516107379190614795565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613d64565b61187c565b6040516107749190614ab7565b60405180910390f35b34801561078957600080fd5b50610792611934565b005b3480156107a057600080fd5b506107a96119bc565b6040516107b69190614ab7565b60405180910390f35b3480156107cb57600080fd5b506107d46119c8565b6040516107e191906146d6565b60405180910390f35b3480156107f657600080fd5b50610811600480360381019061080c9190614044565b6119f2565b005b34801561081f57600080fd5b50610828611a78565b6040516108359190614ab7565b60405180910390f35b34801561084a57600080fd5b50610853611a7e565b6040516108609190614795565b60405180910390f35b34801561087557600080fd5b5061087e611b10565b60405161088b9190614ab7565b60405180910390f35b3480156108a057600080fd5b506108bb60048036038101906108b69190614044565b611b1a565b005b6108d760048036038101906108d29190614044565b611ba0565b005b3480156108e557600080fd5b5061090060048036038101906108fb9190613ea7565b611cfe565b005b34801561090e57600080fd5b50610917611d14565b005b34801561092557600080fd5b50610940600480360381019061093b9190613d64565b611dad565b60405161094d919061475f565b60405180910390f35b34801561096257600080fd5b5061096b611df0565b6040516109789190614ab7565b60405180910390f35b34801561098d57600080fd5b506109a860048036038101906109a39190613e24565b611df6565b005b3480156109b657600080fd5b506109bf611e58565b6040516109cc919061477a565b60405180910390f35b3480156109e157600080fd5b506109fc60048036038101906109f79190614044565b611e7e565b005b348015610a0a57600080fd5b50610a13611f04565b604051610a209190614795565b60405180910390f35b348015610a3557600080fd5b50610a506004803603810190610a4b9190614044565b611f92565b604051610a5d9190614795565b60405180910390f35b348015610a7257600080fd5b50610a7b6120eb565b604051610a889190614ab7565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613ffb565b6120f1565b005b348015610ac657600080fd5b50610acf612187565b604051610adc9190614ab7565b60405180910390f35b348015610af157600080fd5b50610b0c6004803603810190610b079190613d91565b6121a8565b604051610b19919061475f565b60405180910390f35b348015610b2e57600080fd5b50610b496004803603810190610b449190613ffb565b61223c565b005b348015610b5757600080fd5b50610b726004803603810190610b6d9190613d64565b6122d2565b005b348015610b8057600080fd5b50610b9b6004803603810190610b969190613d64565b6123ca565b604051610ba8919061475f565b60405180910390f35b348015610bbd57600080fd5b50610bc6612420565b604051610bd39190614ab7565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c4f5750610c4e82612426565b5b9050919050565b610c5e612508565b73ffffffffffffffffffffffffffffffffffffffff16610c7c6119c8565b73ffffffffffffffffffffffffffffffffffffffff1614610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990614997565b60405180910390fd5b80601860006101000a81548160ff02191690831515021790555050565b606060008054610cfe90614e08565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2a90614e08565b8015610d775780601f10610d4c57610100808354040283529160200191610d77565b820191906000526020600020905b815481529060010190602001808311610d5a57829003601f168201915b5050505050905090565b6000610d8c82612510565b610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290614977565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f8054610e1390614e08565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3f90614e08565b8015610e8c5780601f10610e6157610100808354040283529160200191610e8c565b820191906000526020600020905b815481529060010190602001808311610e6f57829003601f168201915b505050505081565b6000610e9f82611710565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790614a17565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f2f612508565b73ffffffffffffffffffffffffffffffffffffffff161480610f5e5750610f5d81610f58612508565b6121a8565b5b610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f94906148d7565b60405180910390fd5b610fa7838361257c565b505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000600880549050905090565b610ff2610fec612508565b82612635565b611031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102890614a57565b60405180910390fd5b61103c838383612713565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a9906149f7565b60405180910390fd5b601254601354116110f7576110c6826123ca565b156110d557601354905061112d565b6110de82611dad565b156110ed57601254905061112d565b601454905061112d565b61110082611dad565b1561110f57601254905061112d565b611118826123ca565b1561112757601354905061112d565b60145490505b919050565b600061113d8361187c565b821061117e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611175906147b7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6111df612508565b73ffffffffffffffffffffffffffffffffffffffff166111fd6119c8565b73ffffffffffffffffffffffffffffffffffffffff1614611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a90614997565b60405180910390fd5b60005b828290508110156112f35760006019600085858581811061127a57611279614fe1565b5b905060200201602081019061128f9190613d64565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806112eb90614e6b565b915050611256565b505050565b611300612508565b73ffffffffffffffffffffffffffffffffffffffff1661131e6119c8565b73ffffffffffffffffffffffffffffffffffffffff1614611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b90614997565b60405180910390fd5b600061137e6119c8565b73ffffffffffffffffffffffffffffffffffffffff16476040516113a1906146c1565b60006040518083038185875af1925050503d80600081146113de576040519150601f19603f3d011682016040523d82523d6000602084013e6113e3565b606091505b50509050806113f157600080fd5b50565b61140f83838360405180602001604052806000815250611df6565b505050565b606060006114218361187c565b905060008167ffffffffffffffff81111561143f5761143e615010565b5b60405190808252806020026020018201604052801561146d5781602001602082028036833780820191505090505b50905060005b828110156114b7576114858582611132565b82828151811061149857611497614fe1565b5b60200260200101818152505080806114af90614e6b565b915050611473565b508092505050919050565b60006114cc610fd4565b821061150d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150490614a77565b60405180910390fd5b6008828154811061152157611520614fe1565b5b90600052602060002001549050919050565b601860019054906101000a900460ff1681565b61154e612508565b73ffffffffffffffffffffffffffffffffffffffff1661156c6119c8565b73ffffffffffffffffffffffffffffffffffffffff16146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b990614997565b60405180910390fd5b80600d90805190602001906115d8929190613b0d565b5050565b601860009054906101000a900460ff1681565b6115f7612508565b73ffffffffffffffffffffffffffffffffffffffff166116156119c8565b73ffffffffffffffffffffffffffffffffffffffff161461166b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166290614997565b60405180910390fd5b60005b8282905081101561170b5760016019600085858581811061169257611691614fe1565b5b90506020020160208101906116a79190613d64565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061170390614e6b565b91505061166e565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090614937565b60405180910390fd5b80915050919050565b60125481565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d80546117fb90614e08565b80601f016020809104026020016040519081016040528092919081815260200182805461182790614e08565b80156118745780601f1061184957610100808354040283529160200191611874565b820191906000526020600020905b81548152906001019060200180831161185757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e490614917565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61193c612508565b73ffffffffffffffffffffffffffffffffffffffff1661195a6119c8565b73ffffffffffffffffffffffffffffffffffffffff16146119b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a790614997565b60405180910390fd5b6119ba600061297a565b565b60178060000154905081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119fa612508565b73ffffffffffffffffffffffffffffffffffffffff16611a186119c8565b73ffffffffffffffffffffffffffffffffffffffff1614611a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6590614997565b60405180910390fd5b8060128190555050565b60145481565b606060018054611a8d90614e08565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab990614e08565b8015611b065780601f10611adb57610100808354040283529160200191611b06565b820191906000526020600020905b815481529060010190602001808311611ae957829003601f168201915b5050505050905090565b6000600b54905090565b611b22612508565b73ffffffffffffffffffffffffffffffffffffffff16611b406119c8565b73ffffffffffffffffffffffffffffffffffffffff1614611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90614997565b60405180910390fd5b8060138190555050565b601860009054906101000a900460ff1615611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be7906149b7565b60405180910390fd5b60008111611c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2a90614a97565b60405180910390fd5b6000611c3e33611041565b9050611c486119c8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ccf5760008282611c889190614c7c565b905080341015611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc490614a37565b60405180910390fd5b505b6000600190505b828111611cf957611ce633612a40565b8080611cf190614e6b565b915050611cd6565b505050565b611d10611d09612508565b8383612aab565b5050565b611d1c612508565b73ffffffffffffffffffffffffffffffffffffffff16611d3a6119c8565b73ffffffffffffffffffffffffffffffffffffffff1614611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8790614997565b60405180910390fd5b6001601860016101000a81548160ff021916908315150217905550565b6000611db882612c18565b80611dc85750611dc782612cce565b5b80611dd85750611dd782612da4565b5b15611de65760019050611deb565b600090505b919050565b60165481565b611e07611e01612508565b83612635565b611e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3d90614a57565b60405180910390fd5b611e5284848484612e5a565b50505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611e86612508565b73ffffffffffffffffffffffffffffffffffffffff16611ea46119c8565b73ffffffffffffffffffffffffffffffffffffffff1614611efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef190614997565b60405180910390fd5b8060148190555050565b600e8054611f1190614e08565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3d90614e08565b8015611f8a5780601f10611f5f57610100808354040283529160200191611f8a565b820191906000526020600020905b815481529060010190602001808311611f6d57829003601f168201915b505050505081565b6060611f9d82612510565b611fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd3906149d7565b60405180910390fd5b60001515601860019054906101000a900460ff161515141561208a57600f805461200590614e08565b80601f016020809104026020016040519081016040528092919081815260200182805461203190614e08565b801561207e5780601f106120535761010080835404028352916020019161207e565b820191906000526020600020905b81548152906001019060200180831161206157829003601f168201915b505050505090506120e6565b6000612094612eb6565b905060008151116120b457604051806020016040528060008152506120e2565b806120be84612f48565b600e6040516020016120d293929190614690565b6040516020818303038152906040525b9150505b919050565b60155481565b6120f9612508565b73ffffffffffffffffffffffffffffffffffffffff166121176119c8565b73ffffffffffffffffffffffffffffffffffffffff161461216d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216490614997565b60405180910390fd5b80600e9080519060200190612183929190613b0d565b5050565b6000612191611b10565b612199610fac565b6121a39190614cd6565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612244612508565b73ffffffffffffffffffffffffffffffffffffffff166122626119c8565b73ffffffffffffffffffffffffffffffffffffffff16146122b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122af90614997565b60405180910390fd5b80600f90805190602001906122ce929190613b0d565b5050565b6122da612508565b73ffffffffffffffffffffffffffffffffffffffff166122f86119c8565b73ffffffffffffffffffffffffffffffffffffffff161461234e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234590614997565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b5906147f7565b60405180910390fd5b6123c78161297a565b50565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60135481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124f157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806125015750612500826130a9565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125ef83611710565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061264082612510565b61267f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612676906148b7565b60405180910390fd5b600061268a83611710565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126cc57506126cb81856121a8565b5b8061270a57508373ffffffffffffffffffffffffffffffffffffffff166126f284610d81565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661273382611710565b73ffffffffffffffffffffffffffffffffffffffff1614612789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278090614817565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f090614857565b60405180910390fd5b612804838383613113565b61280f60008261257c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461285f9190614cd6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128b69190614bf5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612975838383613227565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612a4a61322c565b9050600081118015612a5e57506015548111155b612a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a94906148f7565b60405180910390fd5b612aa7828261338e565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1190614877565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c0b919061475f565b60405180910390a3505050565b600080601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401612c7691906146d6565b60206040518083038186803b158015612c8e57600080fd5b505afa158015612ca2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cc69190614071565b119050919050565b600080601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401612d2c91906146d6565b60206040518083038186803b158015612d4457600080fd5b505afa158015612d58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d7c9190614071565b905069152d02c7e14af68000008110612d99576001915050612d9f565b60009150505b919050565b600080601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401612e0291906146d6565b60206040518083038186803b158015612e1a57600080fd5b505afa158015612e2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e529190614071565b119050919050565b612e65848484612713565b612e71848484846133ac565b612eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea7906147d7565b60405180910390fd5b50505050565b6060600d8054612ec590614e08565b80601f0160208091040260200160405190810160405280929190818152602001828054612ef190614e08565b8015612f3e5780601f10612f1357610100808354040283529160200191612f3e565b820191906000526020600020905b815481529060010190602001808311612f2157829003601f168201915b5050505050905090565b60606000821415612f90576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130a4565b600082905060005b60008214612fc2578080612fab90614e6b565b915050600a82612fbb9190614c4b565b9150612f98565b60008167ffffffffffffffff811115612fde57612fdd615010565b5b6040519080825280601f01601f1916602001820160405280156130105781602001600182028036833780820191505090505b5090505b6000851461309d576001826130299190614cd6565b9150600a856130389190614ef4565b60306130449190614bf5565b60f81b81838151811061305a57613059614fe1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130969190614c4b565b9450613014565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61311e838383613543565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131615761315c81613548565b6131a0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461319f5761319e8382613591565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131e3576131de816136fe565b613222565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132215761322082826137cf565b5b5b505050565b505050565b600080613237611b10565b61323f610fac565b6132499190614cd6565b90506000813341444542604051602001613267959493929190614631565b6040516020818303038152906040528051906020012060001c61328a9190614ef4565b9050600080600c60008481526020019081526020016000205414156132b1578190506132c8565b600c60008381526020019081526020016000205490505b6000600c60006001866132db9190614cd6565b8152602001908152602001600020541415613319576001836132fd9190614cd6565b600c600084815260200190815260200160002081905550613351565b600c600060018561332a9190614cd6565b815260200190815260200160002054600c6000848152602001908152602001600020819055505b61335961384e565b507f0000000000000000000000000000000000000000000000000000000000000000816133869190614bf5565b935050505090565b6133a88282604051806020016040528060008152506138b5565b5050565b60006133cd8473ffffffffffffffffffffffffffffffffffffffff16613910565b15613536578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133f6612508565b8786866040518563ffffffff1660e01b815260040161341894939291906146f1565b602060405180830381600087803b15801561343257600080fd5b505af192505050801561346357506040513d601f19601f820116820180604052508101906134609190613fce565b60015b6134e6573d8060008114613493576040519150601f19603f3d011682016040523d82523d6000602084013e613498565b606091505b506000815114156134de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134d5906147d7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061353b565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161359e8461187c565b6135a89190614cd6565b905060006007600084815260200190815260200160002054905081811461368d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506137129190614cd6565b905060006009600084815260200190815260200160002054905060006008838154811061374257613741614fe1565b5b90600052602060002001549050806008838154811061376457613763614fe1565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806137b3576137b2614fb2565b5b6001900381819060005260206000200160009055905550505050565b60006137da8361187c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080613859612187565b11613899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389090614897565b60405180910390fd5b600b60008154809291906138ac90614e6b565b91905055905090565b6138bf8383613933565b6138cc60008484846133ac565b61390b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613902906147d7565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399a90614957565b60405180910390fd5b6139ac81612510565b156139ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139e390614837565b60405180910390fd5b6139f860008383613113565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a489190614bf5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613b0960008383613227565b5050565b828054613b1990614e08565b90600052602060002090601f016020900481019282613b3b5760008555613b82565b82601f10613b5457805160ff1916838001178555613b82565b82800160010185558215613b82579182015b82811115613b81578251825591602001919060010190613b66565b5b509050613b8f9190613b93565b5090565b5b80821115613bac576000816000905550600101613b94565b5090565b6000613bc3613bbe84614af7565b614ad2565b905082815260208101848484011115613bdf57613bde61504e565b5b613bea848285614dc6565b509392505050565b6000613c05613c0084614b28565b614ad2565b905082815260208101848484011115613c2157613c2061504e565b5b613c2c848285614dc6565b509392505050565b600081359050613c438161566a565b92915050565b60008083601f840112613c5f57613c5e615044565b5b8235905067ffffffffffffffff811115613c7c57613c7b61503f565b5b602083019150836020820283011115613c9857613c97615049565b5b9250929050565b600081359050613cae81615681565b92915050565b600081359050613cc381615698565b92915050565b600081519050613cd881615698565b92915050565b600082601f830112613cf357613cf2615044565b5b8135613d03848260208601613bb0565b91505092915050565b600082601f830112613d2157613d20615044565b5b8135613d31848260208601613bf2565b91505092915050565b600081359050613d49816156af565b92915050565b600081519050613d5e816156af565b92915050565b600060208284031215613d7a57613d79615058565b5b6000613d8884828501613c34565b91505092915050565b60008060408385031215613da857613da7615058565b5b6000613db685828601613c34565b9250506020613dc785828601613c34565b9150509250929050565b600080600060608486031215613dea57613de9615058565b5b6000613df886828701613c34565b9350506020613e0986828701613c34565b9250506040613e1a86828701613d3a565b9150509250925092565b60008060008060808587031215613e3e57613e3d615058565b5b6000613e4c87828801613c34565b9450506020613e5d87828801613c34565b9350506040613e6e87828801613d3a565b925050606085013567ffffffffffffffff811115613e8f57613e8e615053565b5b613e9b87828801613cde565b91505092959194509250565b60008060408385031215613ebe57613ebd615058565b5b6000613ecc85828601613c34565b9250506020613edd85828601613c9f565b9150509250929050565b60008060408385031215613efe57613efd615058565b5b6000613f0c85828601613c34565b9250506020613f1d85828601613d3a565b9150509250929050565b60008060208385031215613f3e57613f3d615058565b5b600083013567ffffffffffffffff811115613f5c57613f5b615053565b5b613f6885828601613c49565b92509250509250929050565b600060208284031215613f8a57613f89615058565b5b6000613f9884828501613c9f565b91505092915050565b600060208284031215613fb757613fb6615058565b5b6000613fc584828501613cb4565b91505092915050565b600060208284031215613fe457613fe3615058565b5b6000613ff284828501613cc9565b91505092915050565b60006020828403121561401157614010615058565b5b600082013567ffffffffffffffff81111561402f5761402e615053565b5b61403b84828501613d0c565b91505092915050565b60006020828403121561405a57614059615058565b5b600061406884828501613d3a565b91505092915050565b60006020828403121561408757614086615058565b5b600061409584828501613d4f565b91505092915050565b60006140aa83836145fc565b60208301905092915050565b6140c76140c282614d1c565b614ec6565b82525050565b6140d681614d0a565b82525050565b6140ed6140e882614d0a565b614eb4565b82525050565b60006140fe82614b7e565b6141088185614bac565b935061411383614b59565b8060005b8381101561414457815161412b888261409e565b975061413683614b9f565b925050600181019050614117565b5085935050505092915050565b61415a81614d2e565b82525050565b600061416b82614b89565b6141758185614bbd565b9350614185818560208601614dd5565b61418e8161505d565b840191505092915050565b6141a281614d90565b82525050565b60006141b382614b94565b6141bd8185614bd9565b93506141cd818560208601614dd5565b6141d68161505d565b840191505092915050565b60006141ec82614b94565b6141f68185614bea565b9350614206818560208601614dd5565b80840191505092915050565b6000815461421f81614e08565b6142298186614bea565b94506001821660008114614244576001811461425557614288565b60ff19831686528186019350614288565b61425e85614b69565b60005b8381101561428057815481890152600182019150602081019050614261565b838801955050505b50505092915050565b600061429e602b83614bd9565b91506142a98261507b565b604082019050919050565b60006142c1603283614bd9565b91506142cc826150ca565b604082019050919050565b60006142e4602683614bd9565b91506142ef82615119565b604082019050919050565b6000614307602583614bd9565b915061431282615168565b604082019050919050565b600061432a601c83614bd9565b9150614335826151b7565b602082019050919050565b600061434d602483614bd9565b9150614358826151e0565b604082019050919050565b6000614370601983614bd9565b915061437b8261522f565b602082019050919050565b6000614393601883614bd9565b915061439e82615258565b602082019050919050565b60006143b6602c83614bd9565b91506143c182615281565b604082019050919050565b60006143d9603883614bd9565b91506143e4826152d0565b604082019050919050565b60006143fc601183614bd9565b91506144078261531f565b602082019050919050565b600061441f602a83614bd9565b915061442a82615348565b604082019050919050565b6000614442602983614bd9565b915061444d82615397565b604082019050919050565b6000614465602083614bd9565b9150614470826153e6565b602082019050919050565b6000614488602c83614bd9565b91506144938261540f565b604082019050919050565b60006144ab602083614bd9565b91506144b68261545e565b602082019050919050565b60006144ce601683614bd9565b91506144d982615487565b602082019050919050565b60006144f1602f83614bd9565b91506144fc826154b0565b604082019050919050565b6000614514600d83614bd9565b915061451f826154ff565b602082019050919050565b6000614537602183614bd9565b915061454282615528565b604082019050919050565b600061455a600083614bce565b915061456582615577565b600082019050919050565b600061457d601283614bd9565b91506145888261557a565b602082019050919050565b60006145a0603183614bd9565b91506145ab826155a3565b604082019050919050565b60006145c3602c83614bd9565b91506145ce826155f2565b604082019050919050565b60006145e6601b83614bd9565b91506145f182615641565b602082019050919050565b61460581614d86565b82525050565b61461481614d86565b82525050565b61462b61462682614d86565b614eea565b82525050565b600061463d82886140dc565b60148201915061464d82876140b6565b60148201915061465d828661461a565b60208201915061466d828561461a565b60208201915061467d828461461a565b6020820191508190509695505050505050565b600061469c82866141e1565b91506146a882856141e1565b91506146b48284614212565b9150819050949350505050565b60006146cc8261454d565b9150819050919050565b60006020820190506146eb60008301846140cd565b92915050565b600060808201905061470660008301876140cd565b61471360208301866140cd565b614720604083018561460b565b81810360608301526147328184614160565b905095945050505050565b6000602082019050818103600083015261475781846140f3565b905092915050565b60006020820190506147746000830184614151565b92915050565b600060208201905061478f6000830184614199565b92915050565b600060208201905081810360008301526147af81846141a8565b905092915050565b600060208201905081810360008301526147d081614291565b9050919050565b600060208201905081810360008301526147f0816142b4565b9050919050565b60006020820190508181036000830152614810816142d7565b9050919050565b60006020820190508181036000830152614830816142fa565b9050919050565b600060208201905081810360008301526148508161431d565b9050919050565b6000602082019050818103600083015261487081614340565b9050919050565b6000602082019050818103600083015261489081614363565b9050919050565b600060208201905081810360008301526148b081614386565b9050919050565b600060208201905081810360008301526148d0816143a9565b9050919050565b600060208201905081810360008301526148f0816143cc565b9050919050565b60006020820190508181036000830152614910816143ef565b9050919050565b6000602082019050818103600083015261493081614412565b9050919050565b6000602082019050818103600083015261495081614435565b9050919050565b6000602082019050818103600083015261497081614458565b9050919050565b600060208201905081810360008301526149908161447b565b9050919050565b600060208201905081810360008301526149b08161449e565b9050919050565b600060208201905081810360008301526149d0816144c1565b9050919050565b600060208201905081810360008301526149f0816144e4565b9050919050565b60006020820190508181036000830152614a1081614507565b9050919050565b60006020820190508181036000830152614a308161452a565b9050919050565b60006020820190508181036000830152614a5081614570565b9050919050565b60006020820190508181036000830152614a7081614593565b9050919050565b60006020820190508181036000830152614a90816145b6565b9050919050565b60006020820190508181036000830152614ab0816145d9565b9050919050565b6000602082019050614acc600083018461460b565b92915050565b6000614adc614aed565b9050614ae88282614e3a565b919050565b6000604051905090565b600067ffffffffffffffff821115614b1257614b11615010565b5b614b1b8261505d565b9050602081019050919050565b600067ffffffffffffffff821115614b4357614b42615010565b5b614b4c8261505d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c0082614d86565b9150614c0b83614d86565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c4057614c3f614f25565b5b828201905092915050565b6000614c5682614d86565b9150614c6183614d86565b925082614c7157614c70614f54565b5b828204905092915050565b6000614c8782614d86565b9150614c9283614d86565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ccb57614cca614f25565b5b828202905092915050565b6000614ce182614d86565b9150614cec83614d86565b925082821015614cff57614cfe614f25565b5b828203905092915050565b6000614d1582614d66565b9050919050565b6000614d2782614d66565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614d9b82614da2565b9050919050565b6000614dad82614db4565b9050919050565b6000614dbf82614d66565b9050919050565b82818337600083830152505050565b60005b83811015614df3578082015181840152602081019050614dd8565b83811115614e02576000848401525b50505050565b60006002820490506001821680614e2057607f821691505b60208210811415614e3457614e33614f83565b5b50919050565b614e438261505d565b810181811067ffffffffffffffff82111715614e6257614e61615010565b5b80604052505050565b6000614e7682614d86565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ea957614ea8614f25565b5b600182019050919050565b6000614ebf82614ed8565b9050919050565b6000614ed182614ed8565b9050919050565b6000614ee38261506e565b9050919050565b6000819050919050565b6000614eff82614d86565b9150614f0a83614d86565b925082614f1a57614f19614f54565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f206d6f726520746f6b656e7320617661696c61626c650000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4d696e74206e6f7420706f737369626c65000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6e6f742061646472657373203000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61567381614d0a565b811461567e57600080fd5b50565b61568a81614d2e565b811461569557600080fd5b50565b6156a181614d3a565b81146156ac57600080fd5b50565b6156b881614d86565b81146156c357600080fd5b5056fea2646970667358221220dcb96c991b90aded9a075c2a0dd940b81e3db16660da6db68cd6ac587cb921f764736f6c63430008070033697066733a2f2f516d6371324d723743384668787254567169743338764a4441567836675253734a415552417541585a63627a6b6b2f000000000000000000000000aa218ebaad3163fb524053f3f0cbca2e1f80a469000000000000000000000000b20115b8b176d72f077c4f93e95492870240a0b200000000000000000000000085ac0eac55a62840121c5bc75368987a52267086
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000aa218ebaad3163fb524053f3f0cbca2e1f80a469000000000000000000000000b20115b8b176d72f077c4f93e95492870240a0b200000000000000000000000085ac0eac55a62840121c5bc75368987a52267086
-----Decoded View---------------
Arg [0] : _TycoonOG (address): 0xaa218ebaad3163fb524053f3f0cbca2e1f80a469
Arg [1] : _armyContract (address): 0xb20115b8b176d72f077c4f93e95492870240a0b2
Arg [2] : _armyCoalition (address): 0x85ac0eac55a62840121c5bc75368987a52267086
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000aa218ebaad3163fb524053f3f0cbca2e1f80a469
Arg [1] : 000000000000000000000000b20115b8b176d72f077c4f93e95492870240a0b2
Arg [2] : 00000000000000000000000085ac0eac55a62840121c5bc75368987a52267086
Deployed ByteCode Sourcemap
67805:6206:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61484:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72264:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48303:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49863:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68081:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49386:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21936:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62124:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50613:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69330:563;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61792:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72533:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73553:455;;;:::i;:::-;;51023:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70794:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62314:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68445:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71904:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68414:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72343:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47997:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68175:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68144:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67954:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47727:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26861:103;;;;;;;;;;;;;:::i;:::-;;68370:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26210:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73104:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68260:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48472:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22210:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73200:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69916:445;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50156:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71833:65;;;;;;;;;;;;;:::i;:::-;;72790:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68339:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51279:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68114:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73008:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68039:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71314:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68302:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72008:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22387:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50382:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72138:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27119:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70684:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68216:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61484:224;61586:4;61625:35;61610:50;;;:11;:50;;;;:90;;;;61664:36;61688:11;61664:23;:36::i;:::-;61610:90;61603:97;;61484:224;;;:::o;72264:73::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72325:6:::1;72316;;:15;;;;;;;;;;;;;;;;;;72264:73:::0;:::o;48303:100::-;48357:13;48390:5;48383:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48303:100;:::o;49863:221::-;49939:7;49967:16;49975:7;49967;:16::i;:::-;49959:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;50052:15;:24;50068:7;50052:24;;;;;;;;;;;;;;;;;;;;;50045:31;;49863:221;;;:::o;68081:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49386:411::-;49467:13;49483:23;49498:7;49483:14;:23::i;:::-;49467:39;;49531:5;49525:11;;:2;:11;;;;49517:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;49625:5;49609:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;49634:37;49651:5;49658:12;:10;:12::i;:::-;49634:16;:37::i;:::-;49609:62;49587:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;49768:21;49777:2;49781:7;49768:8;:21::i;:::-;49456:341;49386:411;;:::o;21936:96::-;21987:7;22008:19;22001:26;;21936:96;:::o;62124:113::-;62185:7;62212:10;:17;;;;62205:24;;62124:113;:::o;50613:339::-;50808:41;50827:12;:10;:12::i;:::-;50841:7;50808:18;:41::i;:::-;50800:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;50916:28;50926:4;50932:2;50936:7;50916:9;:28::i;:::-;50613:339;;;:::o;69330:563::-;69387:7;69431:1;69411:22;;:8;:22;;;;69403:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;69480:11;;69462:14;;:29;69458:430;;69508:21;69520:8;69508:11;:21::i;:::-;69504:192;;;69549:14;;69542:21;;;;69504:192;69585:20;69596:8;69585:10;:20::i;:::-;69581:115;;;69625:11;;69618:18;;;;69581:115;69673:11;;69666:18;;;;69458:430;69713:20;69724:8;69713:10;:20::i;:::-;69709:179;;;69753:11;;69746:18;;;;69709:179;69782:21;69794:8;69782:11;:21::i;:::-;69778:110;;;69823:14;;69816:21;;;;69778:110;69869:11;;69862:18;;69330:563;;;;:::o;61792:256::-;61889:7;61925:23;61942:5;61925:16;:23::i;:::-;61917:5;:31;61909:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;62014:12;:19;62027:5;62014:19;;;;;;;;;;;;;;;:26;62034:5;62014:26;;;;;;;;;;;;62007:33;;61792:256;;;;:::o;72533:186::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72617:6:::1;72612:94;72633:9;;:16;;72629:1;:20;72612:94;;;72693:5;72667:9;:23;72677:9;;72687:1;72677:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;72667:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;72651:3;;;;;:::i;:::-;;;;72612:94;;;;72533:186:::0;;:::o;73553:455::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73830:7:::1;73851;:5;:7::i;:::-;73843:21;;73872;73843:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73829:69;;;73913:2;73905:11;;;::::0;::::1;;73598:410;73553:455::o:0;51023:185::-;51161:39;51178:4;51184:2;51188:7;51161:39;;;;;;;;;;;;:16;:39::i;:::-;51023:185;;;:::o;70794:348::-;70869:16;70897:23;70923:17;70933:6;70923:9;:17::i;:::-;70897:43;;70947:25;70989:15;70975:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70947:58;;71017:9;71012:103;71032:15;71028:1;:19;71012:103;;;71077:30;71097:6;71105:1;71077:19;:30::i;:::-;71063:8;71072:1;71063:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;71049:3;;;;;:::i;:::-;;;;71012:103;;;;71128:8;71121:15;;;;70794:348;;;:::o;62314:233::-;62389:7;62425:30;:28;:30::i;:::-;62417:5;:38;62409:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;62522:10;62533:5;62522:17;;;;;;;;:::i;:::-;;;;;;;;;;62515:24;;62314:233;;;:::o;68445:27::-;;;;;;;;;;;;;:::o;71904:98::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71985:11:::1;71975:7;:21;;;;;;;;;;;;:::i;:::-;;71904:98:::0;:::o;68414:26::-;;;;;;;;;;;;;:::o;72343:182::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72424:6:::1;72419:93;72440:9;;:16;;72436:1;:20;72419:93;;;72500:4;72474:9;:23;72484:9;;72494:1;72484:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;72474:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;72458:3;;;;;:::i;:::-;;;;72419:93;;;;72343:182:::0;;:::o;47997:239::-;48069:7;48089:13;48105:7;:16;48113:7;48105:16;;;;;;;;;;;;;;;;;;;;;48089:32;;48157:1;48140:19;;:5;:19;;;;48132:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48223:5;48216:12;;;47997:239;;;:::o;68175:36::-;;;;:::o;68144:26::-;;;;;;;;;;;;;:::o;67954:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47727:208::-;47799:7;47844:1;47827:19;;:5;:19;;;;47819:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;47911:9;:16;47921:5;47911:16;;;;;;;;;;;;;;;;47904:23;;47727:208;;;:::o;26861:103::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26926:30:::1;26953:1;26926:18;:30::i;:::-;26861:103::o:0;68370:39::-;;;;;;;;;:::o;26210:87::-;26256:7;26283:6;;;;;;;;;;;26276:13;;26210:87;:::o;73104:90::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73183:5:::1;73169:11;:19;;;;73104:90:::0;:::o;68260:37::-;;;;:::o;48472:104::-;48528:13;48561:7;48554:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48472:104;:::o;22210:80::-;22253:7;22274:11;;22267:18;;22210:80;:::o;73200:96::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73285:5:::1;73268:14;:22;;;;73200:96:::0;:::o;69916:445::-;69977:6;;;;;;;;;;;69976:7;69968:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;70034:1;70025:6;:10;70017:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;70074:12;70100:20;70109:10;70100:8;:20::i;:::-;70093:27;;70147:7;:5;:7::i;:::-;70133:21;;:10;:21;;;70129:141;;70168:14;70192:6;70185:4;:13;;;;:::i;:::-;70168:30;;70230:9;70217;:22;;70209:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;70156:114;70129:141;70281:9;70293:1;70281:13;;70276:80;70301:6;70296:1;:11;70276:80;;70323:25;70337:10;70323:13;:25::i;:::-;70309:3;;;;;:::i;:::-;;;;70276:80;;;;69961:400;69916:445;:::o;50156:155::-;50251:52;50270:12;:10;:12::i;:::-;50284:8;50294;50251:18;:52::i;:::-;50156:155;;:::o;71833:65::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71888:4:::1;71877:8;;:15;;;;;;;;;;;;;;;;;;71833:65::o:0;72790:212::-;72849:4;72866:20;72877:8;72866:10;:20::i;:::-;:41;;;;72890:17;72898:8;72890:7;:17::i;:::-;72866:41;:70;;;;72911:25;72927:8;72911:15;:25::i;:::-;72866:70;72862:135;;;72952:4;72945:11;;;;72862:135;72984:5;72977:12;;72790:212;;;;:::o;68339:26::-;;;;:::o;51279:328::-;51454:41;51473:12;:10;:12::i;:::-;51487:7;51454:18;:41::i;:::-;51446:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;51560:39;51574:4;51580:2;51584:7;51593:5;51560:13;:39::i;:::-;51279:328;;;;:::o;68114:25::-;;;;;;;;;;;;;:::o;73008:90::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73087:5:::1;73073:11;:19;;;;73008:90:::0;:::o;68039:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71314:497::-;71412:13;71453:16;71461:7;71453;:16::i;:::-;71437:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;71562:5;71550:17;;:8;;;;;;;;;;;:17;;;71547:62;;;71587:14;71580:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71547:62;71617:28;71648:10;:8;:10::i;:::-;71617:41;;71703:1;71678:14;71672:28;:32;:133;;;;;;;;;;;;;;;;;71740:14;71756:18;:7;:16;:18::i;:::-;71776:13;71723:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71672:133;71665:140;;;71314:497;;;;:::o;68302:32::-;;;;:::o;72008:122::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72107:17:::1;72091:13;:33;;;;;;;;;;;;:::i;:::-;;72008:122:::0;:::o;22387:113::-;22439:7;22483:12;:10;:12::i;:::-;22460:20;:18;:20::i;:::-;:35;;;;:::i;:::-;22453:42;;22387:113;:::o;50382:164::-;50479:4;50503:18;:25;50522:5;50503:25;;;;;;;;;;;;;;;:35;50529:8;50503:35;;;;;;;;;;;;;;;;;;;;;;;;;50496:42;;50382:164;;;;:::o;72138:120::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72237:15:::1;72220:14;:32;;;;;;;;;;;;:::i;:::-;;72138:120:::0;:::o;27119:201::-;26441:12;:10;:12::i;:::-;26430:23;;:7;:5;:7::i;:::-;:23;;;26422:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27228:1:::1;27208:22;;:8;:22;;;;27200:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27284:28;27303:8;27284:18;:28::i;:::-;27119:201:::0;:::o;70684:104::-;70743:4;70763:9;:19;70773:8;70763:19;;;;;;;;;;;;;;;;;;;;;;;;;70756:26;;70684:104;;;:::o;68216:39::-;;;;:::o;47358:305::-;47460:4;47512:25;47497:40;;;:11;:40;;;;:105;;;;47569:33;47554:48;;;:11;:48;;;;47497:105;:158;;;;47619:36;47643:11;47619:23;:36::i;:::-;47497:158;47477:178;;47358:305;;;:::o;2322:98::-;2375:7;2402:10;2395:17;;2322:98;:::o;53117:127::-;53182:4;53234:1;53206:30;;:7;:16;53214:7;53206:16;;;;;;;;;;;;;;;;;;;;;:30;;;;53199:37;;53117:127;;;:::o;57263:174::-;57365:2;57338:15;:24;57354:7;57338:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;57421:7;57417:2;57383:46;;57392:23;57407:7;57392:14;:23::i;:::-;57383:46;;;;;;;;;;;;57263:174;;:::o;53411:348::-;53504:4;53529:16;53537:7;53529;:16::i;:::-;53521:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;53605:13;53621:23;53636:7;53621:14;:23::i;:::-;53605:39;;53674:5;53663:16;;:7;:16;;;:52;;;;53683:32;53700:5;53707:7;53683:16;:32::i;:::-;53663:52;:87;;;;53743:7;53719:31;;:20;53731:7;53719:11;:20::i;:::-;:31;;;53663:87;53655:96;;;53411:348;;;;:::o;56520:625::-;56679:4;56652:31;;:23;56667:7;56652:14;:23::i;:::-;:31;;;56644:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;56758:1;56744:16;;:2;:16;;;;56736:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;56814:39;56835:4;56841:2;56845:7;56814:20;:39::i;:::-;56918:29;56935:1;56939:7;56918:8;:29::i;:::-;56979:1;56960:9;:15;56970:4;56960:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;57008:1;56991:9;:13;57001:2;56991:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;57039:2;57020:7;:16;57028:7;57020:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;57078:7;57074:2;57059:27;;57068:4;57059:27;;;;;;;;;;;;57099:38;57119:4;57125:2;57129:7;57099:19;:38::i;:::-;56520:625;;;:::o;27480:191::-;27554:16;27573:6;;;;;;;;;;;27554:25;;27599:8;27590:6;;:17;;;;;;;;;;;;;;;;;;27654:8;27623:40;;27644:8;27623:40;;;;;;;;;;;;27543:128;27480:191;:::o;71148:157::-;71195:10;71208:11;:9;:11::i;:::-;71195:24;;71236:1;71231:2;:6;:25;;;;;71247:9;;71241:2;:15;;71231:25;71223:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;71282:17;71292:2;71296;71282:9;:17::i;:::-;71191:114;71148:157;:::o;57579:315::-;57734:8;57725:17;;:5;:17;;;;57717:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;57821:8;57783:18;:25;57802:5;57783:25;;;;;;;;;;;;;;;:35;57809:8;57783:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;57867:8;57845:41;;57860:5;57845:41;;;57877:8;57845:41;;;;;;:::i;:::-;;;;;;;;57579:315;;;:::o;68947:121::-;69007:4;69061:1;69027:11;;;;;;;;;;;:21;;;69049:8;69027:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:35;69020:42;;68947:121;;;:::o;73302:245::-;73360:4;73373:12;73394;;;;;;;;;;;73388:29;;;73418:8;73388:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73373:54;;73449:24;73438:7;:35;73434:108;;73493:4;73486:11;;;;;73434:108;73529:5;73522:12;;;73302:245;;;;:::o;69074:127::-;69139:4;69194:1;69159:12;;;;;;;;;;;:22;;;69182:8;69159:32;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;69152:43;;69074:127;;;:::o;52489:315::-;52646:28;52656:4;52662:2;52666:7;52646:9;:28::i;:::-;52693:48;52716:4;52722:2;52726:7;52735:5;52693:22;:48::i;:::-;52685:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;52489:315;;;;:::o;69222:102::-;69282:13;69311:7;69304:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69222:102;:::o;19490:723::-;19546:13;19776:1;19767:5;:10;19763:53;;;19794:10;;;;;;;;;;;;;;;;;;;;;19763:53;19826:12;19841:5;19826:20;;19857:14;19882:78;19897:1;19889:4;:9;19882:78;;19915:8;;;;;:::i;:::-;;;;19946:2;19938:10;;;;;:::i;:::-;;;19882:78;;;19970:19;20002:6;19992:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19970:39;;20020:154;20036:1;20027:5;:10;20020:154;;20064:1;20054:11;;;;;:::i;:::-;;;20131:2;20123:5;:10;;;;:::i;:::-;20110:2;:24;;;;:::i;:::-;20097:39;;20080:6;20087;20080:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;20160:2;20151:11;;;;;:::i;:::-;;;20020:154;;;20198:6;20184:21;;;;;19490:723;;;;:::o;39017:157::-;39102:4;39141:25;39126:40;;;:11;:40;;;;39119:47;;39017:157;;;:::o;63160:589::-;63304:45;63331:4;63337:2;63341:7;63304:26;:45::i;:::-;63382:1;63366:18;;:4;:18;;;63362:187;;;63401:40;63433:7;63401:31;:40::i;:::-;63362:187;;;63471:2;63463:10;;:4;:10;;;63459:90;;63490:47;63523:4;63529:7;63490:32;:47::i;:::-;63459:90;63362:187;63577:1;63563:16;;:2;:16;;;63559:183;;;63596:45;63633:7;63596:36;:45::i;:::-;63559:183;;;63669:4;63663:10;;:2;:10;;;63659:83;;63690:40;63718:2;63722:7;63690:27;:40::i;:::-;63659:83;63559:183;63160:589;;;:::o;60341:125::-;;;;:::o;24090:1049::-;24138:7;24152:16;24194:12;:10;:12::i;:::-;24171:20;:18;:20::i;:::-;:35;;;;:::i;:::-;24152:54;;24211:14;24403:8;24281:10;24299:14;24321:16;24345:14;24367:15;24257:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24241:154;;;;;;24228:172;;:183;;;;:::i;:::-;24211:200;;24418:13;24467:1;24444:11;:19;24456:6;24444:19;;;;;;;;;;;;:24;24440:256;;;24571:6;24563:14;;24440:256;;;24671:11;:19;24683:6;24671:19;;;;;;;;;;;;24663:27;;24440:256;24790:1;24761:11;:25;24784:1;24773:8;:12;;;;:::i;:::-;24761:25;;;;;;;;;;;;:30;24757:283;;;24888:1;24877:8;:12;;;;:::i;:::-;24855:11;:19;24867:6;24855:19;;;;;;;;;;;:34;;;;24757:283;;;25009:11;:25;25032:1;25021:8;:12;;;;:::i;:::-;25009:25;;;;;;;;;;;;24987:11;:19;24999:6;24987:19;;;;;;;;;;;:47;;;;24757:283;25086:17;:15;:17::i;:::-;;25125:9;25117:5;:17;;;;:::i;:::-;25110:24;;;;;24090:1049;:::o;54101:110::-;54177:26;54187:2;54191:7;54177:26;;;;;;;;;;;;:9;:26::i;:::-;54101:110;;:::o;58459:799::-;58614:4;58635:15;:2;:13;;;:15::i;:::-;58631:620;;;58687:2;58671:36;;;58708:12;:10;:12::i;:::-;58722:4;58728:7;58737:5;58671:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;58667:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58930:1;58913:6;:13;:18;58909:272;;;58956:60;;;;;;;;;;:::i;:::-;;;;;;;;58909:272;59131:6;59125:13;59116:6;59112:2;59108:15;59101:38;58667:529;58804:41;;;58794:51;;;:6;:51;;;;58787:58;;;;;58631:620;59235:4;59228:11;;58459:799;;;;;;;:::o;59830:126::-;;;;:::o;64472:164::-;64576:10;:17;;;;64549:15;:24;64565:7;64549:24;;;;;;;;;;;:44;;;;64604:10;64620:7;64604:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64472:164;:::o;65263:988::-;65529:22;65579:1;65554:22;65571:4;65554:16;:22::i;:::-;:26;;;;:::i;:::-;65529:51;;65591:18;65612:17;:26;65630:7;65612:26;;;;;;;;;;;;65591:47;;65759:14;65745:10;:28;65741:328;;65790:19;65812:12;:18;65825:4;65812:18;;;;;;;;;;;;;;;:34;65831:14;65812:34;;;;;;;;;;;;65790:56;;65896:11;65863:12;:18;65876:4;65863:18;;;;;;;;;;;;;;;:30;65882:10;65863:30;;;;;;;;;;;:44;;;;66013:10;65980:17;:30;65998:11;65980:30;;;;;;;;;;;:43;;;;65775:294;65741:328;66165:17;:26;66183:7;66165:26;;;;;;;;;;;66158:33;;;66209:12;:18;66222:4;66209:18;;;;;;;;;;;;;;;:34;66228:14;66209:34;;;;;;;;;;;66202:41;;;65344:907;;65263:988;;:::o;66546:1079::-;66799:22;66844:1;66824:10;:17;;;;:21;;;;:::i;:::-;66799:46;;66856:18;66877:15;:24;66893:7;66877:24;;;;;;;;;;;;66856:45;;67228:19;67250:10;67261:14;67250:26;;;;;;;;:::i;:::-;;;;;;;;;;67228:48;;67314:11;67289:10;67300;67289:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;67425:10;67394:15;:28;67410:11;67394:28;;;;;;;;;;;:41;;;;67566:15;:24;67582:7;67566:24;;;;;;;;;;;67559:31;;;67601:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;66617:1008;;;66546:1079;:::o;64050:221::-;64135:14;64152:20;64169:2;64152:16;:20::i;:::-;64135:37;;64210:7;64183:12;:16;64196:2;64183:16;;;;;;;;;;;;;;;:24;64200:6;64183:24;;;;;;;;;;;:34;;;;64257:6;64228:17;:26;64246:7;64228:26;;;;;;;;;;;:35;;;;64124:147;64050:221;;:::o;22601:105::-;22667:7;22836:1;22812:21;:19;:21::i;:::-;:25;22804:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22688:11:::1;;:13;;;;;;;;;:::i;:::-;;;;;22681:20;;22601:105:::0;:::o;54438:321::-;54568:18;54574:2;54578:7;54568:5;:18::i;:::-;54619:54;54650:1;54654:2;54658:7;54667:5;54619:22;:54::i;:::-;54597:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;54438:321;;;:::o;28911:326::-;28971:4;29228:1;29206:7;:19;;;:23;29199:30;;28911:326;;;:::o;55095:439::-;55189:1;55175:16;;:2;:16;;;;55167:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;55248:16;55256:7;55248;:16::i;:::-;55247:17;55239:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;55310:45;55339:1;55343:2;55347:7;55310:20;:45::i;:::-;55385:1;55368:9;:13;55378:2;55368:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;55416:2;55397:7;:16;55405:7;55397:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;55461:7;55457:2;55436:33;;55453:1;55436:33;;;;;;;;;;;;55482:44;55510:1;55514:2;55518:7;55482:19;:44::i;:::-;55095:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:143::-;2925:5;2956:6;2950:13;2941:22;;2972:33;2999:5;2972:33;:::i;:::-;2868:143;;;;:::o;3017:329::-;3076:6;3125:2;3113:9;3104:7;3100:23;3096:32;3093:119;;;3131:79;;:::i;:::-;3093:119;3251:1;3276:53;3321:7;3312:6;3301:9;3297:22;3276:53;:::i;:::-;3266:63;;3222:117;3017:329;;;;:::o;3352:474::-;3420:6;3428;3477:2;3465:9;3456:7;3452:23;3448:32;3445:119;;;3483:79;;:::i;:::-;3445:119;3603:1;3628:53;3673:7;3664:6;3653:9;3649:22;3628:53;:::i;:::-;3618:63;;3574:117;3730:2;3756:53;3801:7;3792:6;3781:9;3777:22;3756:53;:::i;:::-;3746:63;;3701:118;3352:474;;;;;:::o;3832:619::-;3909:6;3917;3925;3974:2;3962:9;3953:7;3949:23;3945:32;3942:119;;;3980:79;;:::i;:::-;3942:119;4100:1;4125:53;4170:7;4161:6;4150:9;4146:22;4125:53;:::i;:::-;4115:63;;4071:117;4227:2;4253:53;4298:7;4289:6;4278:9;4274:22;4253:53;:::i;:::-;4243:63;;4198:118;4355:2;4381:53;4426:7;4417:6;4406:9;4402:22;4381:53;:::i;:::-;4371:63;;4326:118;3832:619;;;;;:::o;4457:943::-;4552:6;4560;4568;4576;4625:3;4613:9;4604:7;4600:23;4596:33;4593:120;;;4632:79;;:::i;:::-;4593:120;4752:1;4777:53;4822:7;4813:6;4802:9;4798:22;4777:53;:::i;:::-;4767:63;;4723:117;4879:2;4905:53;4950:7;4941:6;4930:9;4926:22;4905:53;:::i;:::-;4895:63;;4850:118;5007:2;5033:53;5078:7;5069:6;5058:9;5054:22;5033:53;:::i;:::-;5023:63;;4978:118;5163:2;5152:9;5148:18;5135:32;5194:18;5186:6;5183:30;5180:117;;;5216:79;;:::i;:::-;5180:117;5321:62;5375:7;5366:6;5355:9;5351:22;5321:62;:::i;:::-;5311:72;;5106:287;4457:943;;;;;;;:::o;5406:468::-;5471:6;5479;5528:2;5516:9;5507:7;5503:23;5499:32;5496:119;;;5534:79;;:::i;:::-;5496:119;5654:1;5679:53;5724:7;5715:6;5704:9;5700:22;5679:53;:::i;:::-;5669:63;;5625:117;5781:2;5807:50;5849:7;5840:6;5829:9;5825:22;5807:50;:::i;:::-;5797:60;;5752:115;5406:468;;;;;:::o;5880:474::-;5948:6;5956;6005:2;5993:9;5984:7;5980:23;5976:32;5973:119;;;6011:79;;:::i;:::-;5973:119;6131:1;6156:53;6201:7;6192:6;6181:9;6177:22;6156:53;:::i;:::-;6146:63;;6102:117;6258:2;6284:53;6329:7;6320:6;6309:9;6305:22;6284:53;:::i;:::-;6274:63;;6229:118;5880:474;;;;;:::o;6360:559::-;6446:6;6454;6503:2;6491:9;6482:7;6478:23;6474:32;6471:119;;;6509:79;;:::i;:::-;6471:119;6657:1;6646:9;6642:17;6629:31;6687:18;6679:6;6676:30;6673:117;;;6709:79;;:::i;:::-;6673:117;6822:80;6894:7;6885:6;6874:9;6870:22;6822:80;:::i;:::-;6804:98;;;;6600:312;6360:559;;;;;:::o;6925:323::-;6981:6;7030:2;7018:9;7009:7;7005:23;7001:32;6998:119;;;7036:79;;:::i;:::-;6998:119;7156:1;7181:50;7223:7;7214:6;7203:9;7199:22;7181:50;:::i;:::-;7171:60;;7127:114;6925:323;;;;:::o;7254:327::-;7312:6;7361:2;7349:9;7340:7;7336:23;7332:32;7329:119;;;7367:79;;:::i;:::-;7329:119;7487:1;7512:52;7556:7;7547:6;7536:9;7532:22;7512:52;:::i;:::-;7502:62;;7458:116;7254:327;;;;:::o;7587:349::-;7656:6;7705:2;7693:9;7684:7;7680:23;7676:32;7673:119;;;7711:79;;:::i;:::-;7673:119;7831:1;7856:63;7911:7;7902:6;7891:9;7887:22;7856:63;:::i;:::-;7846:73;;7802:127;7587:349;;;;:::o;7942:509::-;8011:6;8060:2;8048:9;8039:7;8035:23;8031:32;8028:119;;;8066:79;;:::i;:::-;8028:119;8214:1;8203:9;8199:17;8186:31;8244:18;8236:6;8233:30;8230:117;;;8266:79;;:::i;:::-;8230:117;8371:63;8426:7;8417:6;8406:9;8402:22;8371:63;:::i;:::-;8361:73;;8157:287;7942:509;;;;:::o;8457:329::-;8516:6;8565:2;8553:9;8544:7;8540:23;8536:32;8533:119;;;8571:79;;:::i;:::-;8533:119;8691:1;8716:53;8761:7;8752:6;8741:9;8737:22;8716:53;:::i;:::-;8706:63;;8662:117;8457:329;;;;:::o;8792:351::-;8862:6;8911:2;8899:9;8890:7;8886:23;8882:32;8879:119;;;8917:79;;:::i;:::-;8879:119;9037:1;9062:64;9118:7;9109:6;9098:9;9094:22;9062:64;:::i;:::-;9052:74;;9008:128;8792:351;;;;:::o;9149:179::-;9218:10;9239:46;9281:3;9273:6;9239:46;:::i;:::-;9317:4;9312:3;9308:14;9294:28;;9149:179;;;;:::o;9334:189::-;9455:61;9483:32;9509:5;9483:32;:::i;:::-;9455:61;:::i;:::-;9450:3;9443:74;9334:189;;:::o;9529:118::-;9616:24;9634:5;9616:24;:::i;:::-;9611:3;9604:37;9529:118;;:::o;9653:157::-;9758:45;9778:24;9796:5;9778:24;:::i;:::-;9758:45;:::i;:::-;9753:3;9746:58;9653:157;;:::o;9846:732::-;9965:3;9994:54;10042:5;9994:54;:::i;:::-;10064:86;10143:6;10138:3;10064:86;:::i;:::-;10057:93;;10174:56;10224:5;10174:56;:::i;:::-;10253:7;10284:1;10269:284;10294:6;10291:1;10288:13;10269:284;;;10370:6;10364:13;10397:63;10456:3;10441:13;10397:63;:::i;:::-;10390:70;;10483:60;10536:6;10483:60;:::i;:::-;10473:70;;10329:224;10316:1;10313;10309:9;10304:14;;10269:284;;;10273:14;10569:3;10562:10;;9970:608;;;9846:732;;;;:::o;10584:109::-;10665:21;10680:5;10665:21;:::i;:::-;10660:3;10653:34;10584:109;;:::o;10699:360::-;10785:3;10813:38;10845:5;10813:38;:::i;:::-;10867:70;10930:6;10925:3;10867:70;:::i;:::-;10860:77;;10946:52;10991:6;10986:3;10979:4;10972:5;10968:16;10946:52;:::i;:::-;11023:29;11045:6;11023:29;:::i;:::-;11018:3;11014:39;11007:46;;10789:270;10699:360;;;;:::o;11065:161::-;11167:52;11213:5;11167:52;:::i;:::-;11162:3;11155:65;11065:161;;:::o;11232:364::-;11320:3;11348:39;11381:5;11348:39;:::i;:::-;11403:71;11467:6;11462:3;11403:71;:::i;:::-;11396:78;;11483:52;11528:6;11523:3;11516:4;11509:5;11505:16;11483:52;:::i;:::-;11560:29;11582:6;11560:29;:::i;:::-;11555:3;11551:39;11544:46;;11324:272;11232:364;;;;:::o;11602:377::-;11708:3;11736:39;11769:5;11736:39;:::i;:::-;11791:89;11873:6;11868:3;11791:89;:::i;:::-;11784:96;;11889:52;11934:6;11929:3;11922:4;11915:5;11911:16;11889:52;:::i;:::-;11966:6;11961:3;11957:16;11950:23;;11712:267;11602:377;;;;:::o;12009:845::-;12112:3;12149:5;12143:12;12178:36;12204:9;12178:36;:::i;:::-;12230:89;12312:6;12307:3;12230:89;:::i;:::-;12223:96;;12350:1;12339:9;12335:17;12366:1;12361:137;;;;12512:1;12507:341;;;;12328:520;;12361:137;12445:4;12441:9;12430;12426:25;12421:3;12414:38;12481:6;12476:3;12472:16;12465:23;;12361:137;;12507:341;12574:38;12606:5;12574:38;:::i;:::-;12634:1;12648:154;12662:6;12659:1;12656:13;12648:154;;;12736:7;12730:14;12726:1;12721:3;12717:11;12710:35;12786:1;12777:7;12773:15;12762:26;;12684:4;12681:1;12677:12;12672:17;;12648:154;;;12831:6;12826:3;12822:16;12815:23;;12514:334;;12328:520;;12116:738;;12009:845;;;;:::o;12860:366::-;13002:3;13023:67;13087:2;13082:3;13023:67;:::i;:::-;13016:74;;13099:93;13188:3;13099:93;:::i;:::-;13217:2;13212:3;13208:12;13201:19;;12860:366;;;:::o;13232:::-;13374:3;13395:67;13459:2;13454:3;13395:67;:::i;:::-;13388:74;;13471:93;13560:3;13471:93;:::i;:::-;13589:2;13584:3;13580:12;13573:19;;13232:366;;;:::o;13604:::-;13746:3;13767:67;13831:2;13826:3;13767:67;:::i;:::-;13760:74;;13843:93;13932:3;13843:93;:::i;:::-;13961:2;13956:3;13952:12;13945:19;;13604:366;;;:::o;13976:::-;14118:3;14139:67;14203:2;14198:3;14139:67;:::i;:::-;14132:74;;14215:93;14304:3;14215:93;:::i;:::-;14333:2;14328:3;14324:12;14317:19;;13976:366;;;:::o;14348:::-;14490:3;14511:67;14575:2;14570:3;14511:67;:::i;:::-;14504:74;;14587:93;14676:3;14587:93;:::i;:::-;14705:2;14700:3;14696:12;14689:19;;14348:366;;;:::o;14720:::-;14862:3;14883:67;14947:2;14942:3;14883:67;:::i;:::-;14876:74;;14959:93;15048:3;14959:93;:::i;:::-;15077:2;15072:3;15068:12;15061:19;;14720:366;;;:::o;15092:::-;15234:3;15255:67;15319:2;15314:3;15255:67;:::i;:::-;15248:74;;15331:93;15420:3;15331:93;:::i;:::-;15449:2;15444:3;15440:12;15433:19;;15092:366;;;:::o;15464:::-;15606:3;15627:67;15691:2;15686:3;15627:67;:::i;:::-;15620:74;;15703:93;15792:3;15703:93;:::i;:::-;15821:2;15816:3;15812:12;15805:19;;15464:366;;;:::o;15836:::-;15978:3;15999:67;16063:2;16058:3;15999:67;:::i;:::-;15992:74;;16075:93;16164:3;16075:93;:::i;:::-;16193:2;16188:3;16184:12;16177:19;;15836:366;;;:::o;16208:::-;16350:3;16371:67;16435:2;16430:3;16371:67;:::i;:::-;16364:74;;16447:93;16536:3;16447:93;:::i;:::-;16565:2;16560:3;16556:12;16549:19;;16208:366;;;:::o;16580:::-;16722:3;16743:67;16807:2;16802:3;16743:67;:::i;:::-;16736:74;;16819:93;16908:3;16819:93;:::i;:::-;16937:2;16932:3;16928:12;16921:19;;16580:366;;;:::o;16952:::-;17094:3;17115:67;17179:2;17174:3;17115:67;:::i;:::-;17108:74;;17191:93;17280:3;17191:93;:::i;:::-;17309:2;17304:3;17300:12;17293:19;;16952:366;;;:::o;17324:::-;17466:3;17487:67;17551:2;17546:3;17487:67;:::i;:::-;17480:74;;17563:93;17652:3;17563:93;:::i;:::-;17681:2;17676:3;17672:12;17665:19;;17324:366;;;:::o;17696:::-;17838:3;17859:67;17923:2;17918:3;17859:67;:::i;:::-;17852:74;;17935:93;18024:3;17935:93;:::i;:::-;18053:2;18048:3;18044:12;18037:19;;17696:366;;;:::o;18068:::-;18210:3;18231:67;18295:2;18290:3;18231:67;:::i;:::-;18224:74;;18307:93;18396:3;18307:93;:::i;:::-;18425:2;18420:3;18416:12;18409:19;;18068:366;;;:::o;18440:::-;18582:3;18603:67;18667:2;18662:3;18603:67;:::i;:::-;18596:74;;18679:93;18768:3;18679:93;:::i;:::-;18797:2;18792:3;18788:12;18781:19;;18440:366;;;:::o;18812:::-;18954:3;18975:67;19039:2;19034:3;18975:67;:::i;:::-;18968:74;;19051:93;19140:3;19051:93;:::i;:::-;19169:2;19164:3;19160:12;19153:19;;18812:366;;;:::o;19184:::-;19326:3;19347:67;19411:2;19406:3;19347:67;:::i;:::-;19340:74;;19423:93;19512:3;19423:93;:::i;:::-;19541:2;19536:3;19532:12;19525:19;;19184:366;;;:::o;19556:::-;19698:3;19719:67;19783:2;19778:3;19719:67;:::i;:::-;19712:74;;19795:93;19884:3;19795:93;:::i;:::-;19913:2;19908:3;19904:12;19897:19;;19556:366;;;:::o;19928:::-;20070:3;20091:67;20155:2;20150:3;20091:67;:::i;:::-;20084:74;;20167:93;20256:3;20167:93;:::i;:::-;20285:2;20280:3;20276:12;20269:19;;19928:366;;;:::o;20300:398::-;20459:3;20480:83;20561:1;20556:3;20480:83;:::i;:::-;20473:90;;20572:93;20661:3;20572:93;:::i;:::-;20690:1;20685:3;20681:11;20674:18;;20300:398;;;:::o;20704:366::-;20846:3;20867:67;20931:2;20926:3;20867:67;:::i;:::-;20860:74;;20943:93;21032:3;20943:93;:::i;:::-;21061:2;21056:3;21052:12;21045:19;;20704:366;;;:::o;21076:::-;21218:3;21239:67;21303:2;21298:3;21239:67;:::i;:::-;21232:74;;21315:93;21404:3;21315:93;:::i;:::-;21433:2;21428:3;21424:12;21417:19;;21076:366;;;:::o;21448:::-;21590:3;21611:67;21675:2;21670:3;21611:67;:::i;:::-;21604:74;;21687:93;21776:3;21687:93;:::i;:::-;21805:2;21800:3;21796:12;21789:19;;21448:366;;;:::o;21820:::-;21962:3;21983:67;22047:2;22042:3;21983:67;:::i;:::-;21976:74;;22059:93;22148:3;22059:93;:::i;:::-;22177:2;22172:3;22168:12;22161:19;;21820:366;;;:::o;22192:108::-;22269:24;22287:5;22269:24;:::i;:::-;22264:3;22257:37;22192:108;;:::o;22306:118::-;22393:24;22411:5;22393:24;:::i;:::-;22388:3;22381:37;22306:118;;:::o;22430:157::-;22535:45;22555:24;22573:5;22555:24;:::i;:::-;22535:45;:::i;:::-;22530:3;22523:58;22430:157;;:::o;22593:852::-;22833:3;22848:75;22919:3;22910:6;22848:75;:::i;:::-;22948:2;22943:3;22939:12;22932:19;;22961:91;23048:3;23039:6;22961:91;:::i;:::-;23077:2;23072:3;23068:12;23061:19;;23090:75;23161:3;23152:6;23090:75;:::i;:::-;23190:2;23185:3;23181:12;23174:19;;23203:75;23274:3;23265:6;23203:75;:::i;:::-;23303:2;23298:3;23294:12;23287:19;;23316:75;23387:3;23378:6;23316:75;:::i;:::-;23416:2;23411:3;23407:12;23400:19;;23436:3;23429:10;;22593:852;;;;;;;;:::o;23451:589::-;23676:3;23698:95;23789:3;23780:6;23698:95;:::i;:::-;23691:102;;23810:95;23901:3;23892:6;23810:95;:::i;:::-;23803:102;;23922:92;24010:3;24001:6;23922:92;:::i;:::-;23915:99;;24031:3;24024:10;;23451:589;;;;;;:::o;24046:379::-;24230:3;24252:147;24395:3;24252:147;:::i;:::-;24245:154;;24416:3;24409:10;;24046:379;;;:::o;24431:222::-;24524:4;24562:2;24551:9;24547:18;24539:26;;24575:71;24643:1;24632:9;24628:17;24619:6;24575:71;:::i;:::-;24431:222;;;;:::o;24659:640::-;24854:4;24892:3;24881:9;24877:19;24869:27;;24906:71;24974:1;24963:9;24959:17;24950:6;24906:71;:::i;:::-;24987:72;25055:2;25044:9;25040:18;25031:6;24987:72;:::i;:::-;25069;25137:2;25126:9;25122:18;25113:6;25069:72;:::i;:::-;25188:9;25182:4;25178:20;25173:2;25162:9;25158:18;25151:48;25216:76;25287:4;25278:6;25216:76;:::i;:::-;25208:84;;24659:640;;;;;;;:::o;25305:373::-;25448:4;25486:2;25475:9;25471:18;25463:26;;25535:9;25529:4;25525:20;25521:1;25510:9;25506:17;25499:47;25563:108;25666:4;25657:6;25563:108;:::i;:::-;25555:116;;25305:373;;;;:::o;25684:210::-;25771:4;25809:2;25798:9;25794:18;25786:26;;25822:65;25884:1;25873:9;25869:17;25860:6;25822:65;:::i;:::-;25684:210;;;;:::o;25900:252::-;26008:4;26046:2;26035:9;26031:18;26023:26;;26059:86;26142:1;26131:9;26127:17;26118:6;26059:86;:::i;:::-;25900:252;;;;:::o;26158:313::-;26271:4;26309:2;26298:9;26294:18;26286:26;;26358:9;26352:4;26348:20;26344:1;26333:9;26329:17;26322:47;26386:78;26459:4;26450:6;26386:78;:::i;:::-;26378:86;;26158:313;;;;:::o;26477:419::-;26643:4;26681:2;26670:9;26666:18;26658:26;;26730:9;26724:4;26720:20;26716:1;26705:9;26701:17;26694:47;26758:131;26884:4;26758:131;:::i;:::-;26750:139;;26477:419;;;:::o;26902:::-;27068:4;27106:2;27095:9;27091:18;27083:26;;27155:9;27149:4;27145:20;27141:1;27130:9;27126:17;27119:47;27183:131;27309:4;27183:131;:::i;:::-;27175:139;;26902:419;;;:::o;27327:::-;27493:4;27531:2;27520:9;27516:18;27508:26;;27580:9;27574:4;27570:20;27566:1;27555:9;27551:17;27544:47;27608:131;27734:4;27608:131;:::i;:::-;27600:139;;27327:419;;;:::o;27752:::-;27918:4;27956:2;27945:9;27941:18;27933:26;;28005:9;27999:4;27995:20;27991:1;27980:9;27976:17;27969:47;28033:131;28159:4;28033:131;:::i;:::-;28025:139;;27752:419;;;:::o;28177:::-;28343:4;28381:2;28370:9;28366:18;28358:26;;28430:9;28424:4;28420:20;28416:1;28405:9;28401:17;28394:47;28458:131;28584:4;28458:131;:::i;:::-;28450:139;;28177:419;;;:::o;28602:::-;28768:4;28806:2;28795:9;28791:18;28783:26;;28855:9;28849:4;28845:20;28841:1;28830:9;28826:17;28819:47;28883:131;29009:4;28883:131;:::i;:::-;28875:139;;28602:419;;;:::o;29027:::-;29193:4;29231:2;29220:9;29216:18;29208:26;;29280:9;29274:4;29270:20;29266:1;29255:9;29251:17;29244:47;29308:131;29434:4;29308:131;:::i;:::-;29300:139;;29027:419;;;:::o;29452:::-;29618:4;29656:2;29645:9;29641:18;29633:26;;29705:9;29699:4;29695:20;29691:1;29680:9;29676:17;29669:47;29733:131;29859:4;29733:131;:::i;:::-;29725:139;;29452:419;;;:::o;29877:::-;30043:4;30081:2;30070:9;30066:18;30058:26;;30130:9;30124:4;30120:20;30116:1;30105:9;30101:17;30094:47;30158:131;30284:4;30158:131;:::i;:::-;30150:139;;29877:419;;;:::o;30302:::-;30468:4;30506:2;30495:9;30491:18;30483:26;;30555:9;30549:4;30545:20;30541:1;30530:9;30526:17;30519:47;30583:131;30709:4;30583:131;:::i;:::-;30575:139;;30302:419;;;:::o;30727:::-;30893:4;30931:2;30920:9;30916:18;30908:26;;30980:9;30974:4;30970:20;30966:1;30955:9;30951:17;30944:47;31008:131;31134:4;31008:131;:::i;:::-;31000:139;;30727:419;;;:::o;31152:::-;31318:4;31356:2;31345:9;31341:18;31333:26;;31405:9;31399:4;31395:20;31391:1;31380:9;31376:17;31369:47;31433:131;31559:4;31433:131;:::i;:::-;31425:139;;31152:419;;;:::o;31577:::-;31743:4;31781:2;31770:9;31766:18;31758:26;;31830:9;31824:4;31820:20;31816:1;31805:9;31801:17;31794:47;31858:131;31984:4;31858:131;:::i;:::-;31850:139;;31577:419;;;:::o;32002:::-;32168:4;32206:2;32195:9;32191:18;32183:26;;32255:9;32249:4;32245:20;32241:1;32230:9;32226:17;32219:47;32283:131;32409:4;32283:131;:::i;:::-;32275:139;;32002:419;;;:::o;32427:::-;32593:4;32631:2;32620:9;32616:18;32608:26;;32680:9;32674:4;32670:20;32666:1;32655:9;32651:17;32644:47;32708:131;32834:4;32708:131;:::i;:::-;32700:139;;32427:419;;;:::o;32852:::-;33018:4;33056:2;33045:9;33041:18;33033:26;;33105:9;33099:4;33095:20;33091:1;33080:9;33076:17;33069:47;33133:131;33259:4;33133:131;:::i;:::-;33125:139;;32852:419;;;:::o;33277:::-;33443:4;33481:2;33470:9;33466:18;33458:26;;33530:9;33524:4;33520:20;33516:1;33505:9;33501:17;33494:47;33558:131;33684:4;33558:131;:::i;:::-;33550:139;;33277:419;;;:::o;33702:::-;33868:4;33906:2;33895:9;33891:18;33883:26;;33955:9;33949:4;33945:20;33941:1;33930:9;33926:17;33919:47;33983:131;34109:4;33983:131;:::i;:::-;33975:139;;33702:419;;;:::o;34127:::-;34293:4;34331:2;34320:9;34316:18;34308:26;;34380:9;34374:4;34370:20;34366:1;34355:9;34351:17;34344:47;34408:131;34534:4;34408:131;:::i;:::-;34400:139;;34127:419;;;:::o;34552:::-;34718:4;34756:2;34745:9;34741:18;34733:26;;34805:9;34799:4;34795:20;34791:1;34780:9;34776:17;34769:47;34833:131;34959:4;34833:131;:::i;:::-;34825:139;;34552:419;;;:::o;34977:::-;35143:4;35181:2;35170:9;35166:18;35158:26;;35230:9;35224:4;35220:20;35216:1;35205:9;35201:17;35194:47;35258:131;35384:4;35258:131;:::i;:::-;35250:139;;34977:419;;;:::o;35402:::-;35568:4;35606:2;35595:9;35591:18;35583:26;;35655:9;35649:4;35645:20;35641:1;35630:9;35626:17;35619:47;35683:131;35809:4;35683:131;:::i;:::-;35675:139;;35402:419;;;:::o;35827:::-;35993:4;36031:2;36020:9;36016:18;36008:26;;36080:9;36074:4;36070:20;36066:1;36055:9;36051:17;36044:47;36108:131;36234:4;36108:131;:::i;:::-;36100:139;;35827:419;;;:::o;36252:::-;36418:4;36456:2;36445:9;36441:18;36433:26;;36505:9;36499:4;36495:20;36491:1;36480:9;36476:17;36469:47;36533:131;36659:4;36533:131;:::i;:::-;36525:139;;36252:419;;;:::o;36677:222::-;36770:4;36808:2;36797:9;36793:18;36785:26;;36821:71;36889:1;36878:9;36874:17;36865:6;36821:71;:::i;:::-;36677:222;;;;:::o;36905:129::-;36939:6;36966:20;;:::i;:::-;36956:30;;36995:33;37023:4;37015:6;36995:33;:::i;:::-;36905:129;;;:::o;37040:75::-;37073:6;37106:2;37100:9;37090:19;;37040:75;:::o;37121:307::-;37182:4;37272:18;37264:6;37261:30;37258:56;;;37294:18;;:::i;:::-;37258:56;37332:29;37354:6;37332:29;:::i;:::-;37324:37;;37416:4;37410;37406:15;37398:23;;37121:307;;;:::o;37434:308::-;37496:4;37586:18;37578:6;37575:30;37572:56;;;37608:18;;:::i;:::-;37572:56;37646:29;37668:6;37646:29;:::i;:::-;37638:37;;37730:4;37724;37720:15;37712:23;;37434:308;;;:::o;37748:132::-;37815:4;37838:3;37830:11;;37868:4;37863:3;37859:14;37851:22;;37748:132;;;:::o;37886:141::-;37935:4;37958:3;37950:11;;37981:3;37978:1;37971:14;38015:4;38012:1;38002:18;37994:26;;37886:141;;;:::o;38033:114::-;38100:6;38134:5;38128:12;38118:22;;38033:114;;;:::o;38153:98::-;38204:6;38238:5;38232:12;38222:22;;38153:98;;;:::o;38257:99::-;38309:6;38343:5;38337:12;38327:22;;38257:99;;;:::o;38362:113::-;38432:4;38464;38459:3;38455:14;38447:22;;38362:113;;;:::o;38481:184::-;38580:11;38614:6;38609:3;38602:19;38654:4;38649:3;38645:14;38630:29;;38481:184;;;;:::o;38671:168::-;38754:11;38788:6;38783:3;38776:19;38828:4;38823:3;38819:14;38804:29;;38671:168;;;;:::o;38845:147::-;38946:11;38983:3;38968:18;;38845:147;;;;:::o;38998:169::-;39082:11;39116:6;39111:3;39104:19;39156:4;39151:3;39147:14;39132:29;;38998:169;;;;:::o;39173:148::-;39275:11;39312:3;39297:18;;39173:148;;;;:::o;39327:305::-;39367:3;39386:20;39404:1;39386:20;:::i;:::-;39381:25;;39420:20;39438:1;39420:20;:::i;:::-;39415:25;;39574:1;39506:66;39502:74;39499:1;39496:81;39493:107;;;39580:18;;:::i;:::-;39493:107;39624:1;39621;39617:9;39610:16;;39327:305;;;;:::o;39638:185::-;39678:1;39695:20;39713:1;39695:20;:::i;:::-;39690:25;;39729:20;39747:1;39729:20;:::i;:::-;39724:25;;39768:1;39758:35;;39773:18;;:::i;:::-;39758:35;39815:1;39812;39808:9;39803:14;;39638:185;;;;:::o;39829:348::-;39869:7;39892:20;39910:1;39892:20;:::i;:::-;39887:25;;39926:20;39944:1;39926:20;:::i;:::-;39921:25;;40114:1;40046:66;40042:74;40039:1;40036:81;40031:1;40024:9;40017:17;40013:105;40010:131;;;40121:18;;:::i;:::-;40010:131;40169:1;40166;40162:9;40151:20;;39829:348;;;;:::o;40183:191::-;40223:4;40243:20;40261:1;40243:20;:::i;:::-;40238:25;;40277:20;40295:1;40277:20;:::i;:::-;40272:25;;40316:1;40313;40310:8;40307:34;;;40321:18;;:::i;:::-;40307:34;40366:1;40363;40359:9;40351:17;;40183:191;;;;:::o;40380:96::-;40417:7;40446:24;40464:5;40446:24;:::i;:::-;40435:35;;40380:96;;;:::o;40482:104::-;40527:7;40556:24;40574:5;40556:24;:::i;:::-;40545:35;;40482:104;;;:::o;40592:90::-;40626:7;40669:5;40662:13;40655:21;40644:32;;40592:90;;;:::o;40688:149::-;40724:7;40764:66;40757:5;40753:78;40742:89;;40688:149;;;:::o;40843:126::-;40880:7;40920:42;40913:5;40909:54;40898:65;;40843:126;;;:::o;40975:77::-;41012:7;41041:5;41030:16;;40975:77;;;:::o;41058:141::-;41123:9;41156:37;41187:5;41156:37;:::i;:::-;41143:50;;41058:141;;;:::o;41205:126::-;41255:9;41288:37;41319:5;41288:37;:::i;:::-;41275:50;;41205:126;;;:::o;41337:113::-;41387:9;41420:24;41438:5;41420:24;:::i;:::-;41407:37;;41337:113;;;:::o;41456:154::-;41540:6;41535:3;41530;41517:30;41602:1;41593:6;41588:3;41584:16;41577:27;41456:154;;;:::o;41616:307::-;41684:1;41694:113;41708:6;41705:1;41702:13;41694:113;;;41793:1;41788:3;41784:11;41778:18;41774:1;41769:3;41765:11;41758:39;41730:2;41727:1;41723:10;41718:15;;41694:113;;;41825:6;41822:1;41819:13;41816:101;;;41905:1;41896:6;41891:3;41887:16;41880:27;41816:101;41665:258;41616:307;;;:::o;41929:320::-;41973:6;42010:1;42004:4;42000:12;41990:22;;42057:1;42051:4;42047:12;42078:18;42068:81;;42134:4;42126:6;42122:17;42112:27;;42068:81;42196:2;42188:6;42185:14;42165:18;42162:38;42159:84;;;42215:18;;:::i;:::-;42159:84;41980:269;41929:320;;;:::o;42255:281::-;42338:27;42360:4;42338:27;:::i;:::-;42330:6;42326:40;42468:6;42456:10;42453:22;42432:18;42420:10;42417:34;42414:62;42411:88;;;42479:18;;:::i;:::-;42411:88;42519:10;42515:2;42508:22;42298:238;42255:281;;:::o;42542:233::-;42581:3;42604:24;42622:5;42604:24;:::i;:::-;42595:33;;42650:66;42643:5;42640:77;42637:103;;;42720:18;;:::i;:::-;42637:103;42767:1;42760:5;42756:13;42749:20;;42542:233;;;:::o;42781:100::-;42820:7;42849:26;42869:5;42849:26;:::i;:::-;42838:37;;42781:100;;;:::o;42887:108::-;42934:7;42963:26;42983:5;42963:26;:::i;:::-;42952:37;;42887:108;;;:::o;43001:94::-;43040:7;43069:20;43083:5;43069:20;:::i;:::-;43058:31;;43001:94;;;:::o;43101:79::-;43140:7;43169:5;43158:16;;43101:79;;;:::o;43186:176::-;43218:1;43235:20;43253:1;43235:20;:::i;:::-;43230:25;;43269:20;43287:1;43269:20;:::i;:::-;43264:25;;43308:1;43298:35;;43313:18;;:::i;:::-;43298:35;43354:1;43351;43347:9;43342:14;;43186:176;;;;:::o;43368:180::-;43416:77;43413:1;43406:88;43513:4;43510:1;43503:15;43537:4;43534:1;43527:15;43554:180;43602:77;43599:1;43592:88;43699:4;43696:1;43689:15;43723:4;43720:1;43713:15;43740:180;43788:77;43785:1;43778:88;43885:4;43882:1;43875:15;43909:4;43906:1;43899:15;43926:180;43974:77;43971:1;43964:88;44071:4;44068:1;44061:15;44095:4;44092:1;44085:15;44112:180;44160:77;44157:1;44150:88;44257:4;44254:1;44247:15;44281:4;44278:1;44271:15;44298:180;44346:77;44343:1;44336:88;44443:4;44440:1;44433:15;44467:4;44464:1;44457:15;44484:117;44593:1;44590;44583:12;44607:117;44716:1;44713;44706:12;44730:117;44839:1;44836;44829:12;44853:117;44962:1;44959;44952:12;44976:117;45085:1;45082;45075:12;45099:117;45208:1;45205;45198:12;45222:102;45263:6;45314:2;45310:7;45305:2;45298:5;45294:14;45290:28;45280:38;;45222:102;;;:::o;45330:94::-;45363:8;45411:5;45407:2;45403:14;45382:35;;45330:94;;;:::o;45430:230::-;45570:34;45566:1;45558:6;45554:14;45547:58;45639:13;45634:2;45626:6;45622:15;45615:38;45430:230;:::o;45666:237::-;45806:34;45802:1;45794:6;45790:14;45783:58;45875:20;45870:2;45862:6;45858:15;45851:45;45666:237;:::o;45909:225::-;46049:34;46045:1;46037:6;46033:14;46026:58;46118:8;46113:2;46105:6;46101:15;46094:33;45909:225;:::o;46140:224::-;46280:34;46276:1;46268:6;46264:14;46257:58;46349:7;46344:2;46336:6;46332:15;46325:32;46140:224;:::o;46370:178::-;46510:30;46506:1;46498:6;46494:14;46487:54;46370:178;:::o;46554:223::-;46694:34;46690:1;46682:6;46678:14;46671:58;46763:6;46758:2;46750:6;46746:15;46739:31;46554:223;:::o;46783:175::-;46923:27;46919:1;46911:6;46907:14;46900:51;46783:175;:::o;46964:174::-;47104:26;47100:1;47092:6;47088:14;47081:50;46964:174;:::o;47144:231::-;47284:34;47280:1;47272:6;47268:14;47261:58;47353:14;47348:2;47340:6;47336:15;47329:39;47144:231;:::o;47381:243::-;47521:34;47517:1;47509:6;47505:14;47498:58;47590:26;47585:2;47577:6;47573:15;47566:51;47381:243;:::o;47630:167::-;47770:19;47766:1;47758:6;47754:14;47747:43;47630:167;:::o;47803:229::-;47943:34;47939:1;47931:6;47927:14;47920:58;48012:12;48007:2;47999:6;47995:15;47988:37;47803:229;:::o;48038:228::-;48178:34;48174:1;48166:6;48162:14;48155:58;48247:11;48242:2;48234:6;48230:15;48223:36;48038:228;:::o;48272:182::-;48412:34;48408:1;48400:6;48396:14;48389:58;48272:182;:::o;48460:231::-;48600:34;48596:1;48588:6;48584:14;48577:58;48669:14;48664:2;48656:6;48652:15;48645:39;48460:231;:::o;48697:182::-;48837:34;48833:1;48825:6;48821:14;48814:58;48697:182;:::o;48885:172::-;49025:24;49021:1;49013:6;49009:14;49002:48;48885:172;:::o;49063:234::-;49203:34;49199:1;49191:6;49187:14;49180:58;49272:17;49267:2;49259:6;49255:15;49248:42;49063:234;:::o;49303:163::-;49443:15;49439:1;49431:6;49427:14;49420:39;49303:163;:::o;49472:220::-;49612:34;49608:1;49600:6;49596:14;49589:58;49681:3;49676:2;49668:6;49664:15;49657:28;49472:220;:::o;49698:114::-;;:::o;49818:168::-;49958:20;49954:1;49946:6;49942:14;49935:44;49818:168;:::o;49992:236::-;50132:34;50128:1;50120:6;50116:14;50109:58;50201:19;50196:2;50188:6;50184:15;50177:44;49992:236;:::o;50234:231::-;50374:34;50370:1;50362:6;50358:14;50351:58;50443:14;50438:2;50430:6;50426:15;50419:39;50234:231;:::o;50471:177::-;50611:29;50607:1;50599:6;50595:14;50588:53;50471:177;:::o;50654:122::-;50727:24;50745:5;50727:24;:::i;:::-;50720:5;50717:35;50707:63;;50766:1;50763;50756:12;50707:63;50654:122;:::o;50782:116::-;50852:21;50867:5;50852:21;:::i;:::-;50845:5;50842:32;50832:60;;50888:1;50885;50878:12;50832:60;50782:116;:::o;50904:120::-;50976:23;50993:5;50976:23;:::i;:::-;50969:5;50966:34;50956:62;;51014:1;51011;51004:12;50956:62;50904:120;:::o;51030:122::-;51103:24;51121:5;51103:24;:::i;:::-;51096:5;51093:35;51083:63;;51142:1;51139;51132:12;51083:63;51030:122;:::o
Swarm Source
ipfs://dcb96c991b90aded9a075c2a0dd940b81e3db16660da6db68cd6ac587cb921f7