ETH Price: $3,164.50 (+1.43%)
Gas: 1 Gwei

Token

iBallz: Private Eyes (IBALLZPE)
 

Overview

Max Total Supply

3,333 IBALLZPE

Holders

663

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
27 IBALLZPE
0xb608cb37839d01e66aa4570ba24d643bd5fc6191
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

7,000 randomly generated iBallz from over 150 traits of varying rarities in 9 different categories. Outfits, Hats, Accessories, Eye Color, Bodies, and more.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
iBallzPE

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 8 of 16: iBallzPE.sol
//Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./EnumerableMap.sol";
import "./ERC721Enumerable.sol";

contract iBallzPE is ERC721Enumerable, Ownable  {

    using SafeMath for uint256;

    // Token detail
    struct IBallzDetail {
        uint256 creation;
    }

    // Events
    event TokenMinted(uint256 tokenId, address owner, uint256 creation);

    // Token Detail
    mapping(uint256 => IBallzDetail) private _iballzDetails;

    // Provenance number
    string public PROVENANCE = "";

    // Max amount of token to purchase per account each time
    uint public MAX_PURCHASE = 20;

    // Maximum amount of tokens to supply.
    uint256 public MAX_TOKENS = 7000;

    // Current price.
    uint256 public CURRENT_PRICE = 80000000000000000;

    // Define if sale is active
    bool public saleIsActive = true;

    // Base URI
    string private baseURI;

    address private walletCreator = 0x9e16F7cB8c5d013F627cB7eCB62688914fAf1CcF;
    address private walletDev = 0x5BBfbFc8DF4A8CEfDa2c642505ce23380FcbCBC0;

    /**
     * Contract constructor
     */
    constructor(string memory name, string memory symbol, string memory _baseUri) ERC721(name, symbol) {
        setBaseURI(_baseUri);
    }

    /*     
    * Set provenance once it's calculated
    */
    function setProvenanceHash(string memory _provenanceHash) public onlyOwner {
        PROVENANCE = _provenanceHash;
    }

    /*
    * Set max tokens
    */
    function setMaxTokens(uint256 _maxTokens) public onlyOwner {
        MAX_TOKENS = _maxTokens;
    }

    /*
    * Set max purchase
    */
    function setMaxPurchase(uint256 _maxPurchase) public onlyOwner {
        MAX_PURCHASE = _maxPurchase;
    }

    /*
    * Pause sale if active, make active if paused
    */
    function setSaleState(bool _newState) public onlyOwner {
        saleIsActive = _newState;
    }

    /**
     * Set the current token price
     */
    function setCurrentPrice(uint256 _currentPrice) public onlyOwner {
        CURRENT_PRICE = _currentPrice;
    }

    /**
     * Set walletCreator address
     */
    function setWalletCreator(address _walletCreator) public onlyOwner {
        walletCreator = _walletCreator;
    }

    /**
     * Set walletDev address
     */
    function setWalletDev(address _walletDev) public onlyOwner {
        walletDev = _walletDev;
    }

    /**
     * Get the token detail
     */
    function getIBallzDetail(uint256 _tokenId) public view returns(IBallzDetail memory detail) {
        require(_exists(_tokenId), "Token was not minted");

        return _iballzDetails[_tokenId];
    }

    /**
    * @dev Changes the base URI if we want to move things in the future (Callable by owner only)
    */
    function setBaseURI(string memory BaseURI) public onlyOwner {
       baseURI = BaseURI;
    }

     /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    /**
     * Withdraw
     */
    function withdraw() public onlyOwner {
        require(address(this).balance > 0, "No balance to withdraw");
    
        uint balance = address(this).balance;
        uint wDevShare = balance.mul(25).div(100);
        uint wCreatorShare = balance.mul(75).div(100);

        (bool success, ) = walletDev.call{value: wDevShare}("");
        require(success, "walletDev Withdrawal failed");

        (success, ) = walletCreator.call{value: wCreatorShare}("");
        require(success, "walletCreator Withdrawal failed");
    }

    /**
     * Withdraw
     */
    function withdrawAlt() public onlyOwner {
        require(address(this).balance > 0, "No balance to withdraw");

        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    /**
     * Reserve tokens
     */
    function reserveTokens(uint256 qty) public onlyOwner {
        require(totalSupply().add(qty) <= MAX_TOKENS, "Purchase would exceed max supply");
        uint tokenId;
        uint256 creation = block.timestamp;

        for (uint i = 1; i <= qty; i++) {
            tokenId = totalSupply().add(1);
            if (tokenId <= MAX_TOKENS) {
                _safeMint(msg.sender, tokenId);
                _iballzDetails[tokenId] = IBallzDetail(creation);
                emit TokenMinted(tokenId, msg.sender, creation);
            }
        }
    }

    /**
     * Mint token for owners.
     */
    function mintTokens(address[] memory _owners) public onlyOwner {
        require(totalSupply().add(_owners.length) <= MAX_TOKENS, "Purchase would exceed max supply");
        uint256 creation = block.timestamp;
        uint256 tokenId;
        
        for (uint i = 0; i < _owners.length; i++) {
            tokenId = totalSupply().add(1);
            if (tokenId <= MAX_TOKENS) {
                _safeMint(_owners[i], tokenId);
                _iballzDetails[tokenId] = IBallzDetail(creation);
                emit TokenMinted(tokenId, _owners[i], creation);
            }
        }
    }

    /**
    * Mint tokens
    */
    function mint(uint qty) public payable {
        require(saleIsActive, "Mint is not available right now");
        require(qty <= MAX_PURCHASE, "Can only mint 20 tokens at a time");
        require(totalSupply().add(qty) <= MAX_TOKENS, "Purchase would exceed max supply");
        require(CURRENT_PRICE.mul(qty) <= msg.value, "Value sent is not correct");
        uint256 creation = block.timestamp;
        uint tokenId;
        
        for(uint i = 1; i <= qty; i++) {
            tokenId = totalSupply().add(1);
            if (tokenId <= MAX_TOKENS) {
                _safeMint(msg.sender, tokenId);
                _iballzDetails[tokenId] = IBallzDetail(creation);
                
                emit TokenMinted(tokenId, msg.sender, creation);
            }
        }
    }

    /**
     * Get tokens owner
     */
    function tokensOfOwner(address _owner) external view returns(uint256[] memory) {
        uint tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint i = 0; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }
}

File 1 of 16: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 16: Context.sol
// SPDX-License-Identifier: MIT

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 3 of 16: EnumerableMap.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./EnumerableSet.sol";

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    using EnumerableSet for EnumerableSet.Bytes32Set;

    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct Map {
        // Storage of keys
        EnumerableSet.Bytes32Set _keys;

        mapping (bytes32 => bytes32) _values;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        map._values[key] = value;
        return map._keys.add(key);
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        delete map._values[key];
        return map._keys.remove(key);
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._keys.contains(key);
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._keys.length();
    }

   /**
    * @dev Returns the key-value pair stored at position `index` in the map. O(1).
    *
    * Note that there are no guarantees on the ordering of entries inside the
    * array, and it may change when more entries are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        bytes32 key = map._keys.at(index);
        return (key, map._values[key]);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        bytes32 value = map._values[key];
        if (value == bytes32(0)) {
            return (_contains(map, key), bytes32(0));
        } else {
            return (true, value);
        }
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        bytes32 value = map._values[key];
        require(value != 0 || _contains(map, key), "EnumerableMap: nonexistent key");
        return value;
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        bytes32 value = map._values[key];
        require(value != 0 || _contains(map, key), errorMessage);
        return value;
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

   /**
    * @dev Returns the element stored at position `index` in the set. O(1).
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}

File 4 of 16: EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

File 5 of 16: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 6 of 16: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @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}. Empty by default, can be overriden
     * 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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 || getApproved(tokenId) == spender || isApprovedForAll(owner, 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);
    }

    /**
     * @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);
    }

    /**
     * @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 of token that is not own");
        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);
    }

    /**
     * @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 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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 { }
}

File 7 of 16: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @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 9 of 16: IERC165.sol
// SPDX-License-Identifier: MIT

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 10 of 16: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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`, 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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 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);

    /**
      * @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;
}

File 11 of 16: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 tokenId);

    /**
     * @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 12 of 16: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 13 of 16: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}

File 14 of 16: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";
/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 15 of 16: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 16 of 16: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"_baseUri","type":"string"}],"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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"creation","type":"uint256"}],"name":"TokenMinted","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":"CURRENT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_tokenId","type":"uint256"}],"name":"getIBallzDetail","outputs":[{"components":[{"internalType":"uint256","name":"creation","type":"uint256"}],"internalType":"struct iBallzPE.IBallzDetail","name":"detail","type":"tuple"}],"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":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_owners","type":"address[]"}],"name":"mintTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"BaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_currentPrice","type":"uint256"}],"name":"setCurrentPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPurchase","type":"uint256"}],"name":"setMaxPurchase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokens","type":"uint256"}],"name":"setMaxTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_walletCreator","type":"address"}],"name":"setWalletCreator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_walletDev","type":"address"}],"name":"setWalletDev","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":[{"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAlt","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600c90805190602001906200002b92919062000319565b506014600d55611b58600e5567011c37937e080000600f556001601060006101000a81548160ff021916908315150217905550739e16f7cb8c5d013f627cb7ecb62688914faf1ccf601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735bbfbfc8df4a8cefda2c642505ce23380fcbcbc0601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200011557600080fd5b50604051620057503803806200575083398181016040528101906200013b91906200043b565b828281600090805190602001906200015592919062000319565b5080600190805190602001906200016e92919062000319565b5050506000620001836200023c60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000233816200024460201b60201c565b50505062000682565b600033905090565b620002546200023c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200027a620002ef60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ca906200051e565b60405180910390fd5b8060119080519060200190620002eb92919062000319565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200032790620005ee565b90600052602060002090601f0160209004810192826200034b576000855562000397565b82601f106200036657805160ff191683800117855562000397565b8280016001018555821562000397579182015b828111156200039657825182559160200191906001019062000379565b5b509050620003a69190620003aa565b5090565b5b80821115620003c5576000816000905550600101620003ab565b5090565b6000620003e0620003da8462000574565b62000540565b905082815260208101848484011115620003f957600080fd5b62000406848285620005b8565b509392505050565b600082601f8301126200042057600080fd5b815162000432848260208601620003c9565b91505092915050565b6000806000606084860312156200045157600080fd5b600084015167ffffffffffffffff8111156200046c57600080fd5b6200047a868287016200040e565b935050602084015167ffffffffffffffff8111156200049857600080fd5b620004a6868287016200040e565b925050604084015167ffffffffffffffff811115620004c457600080fd5b620004d2868287016200040e565b9150509250925092565b6000620004eb602083620005a7565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600060208201905081810360008301526200053981620004dc565b9050919050565b6000604051905081810181811067ffffffffffffffff821117156200056a576200056962000653565b5b8060405250919050565b600067ffffffffffffffff82111562000592576200059162000653565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60005b83811015620005d8578082015181840152602081019050620005bb565b83811115620005e8576000848401525b50505050565b600060028204905060018216806200060757607f821691505b602082108114156200061e576200061d62000624565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6150be80620006926000396000f3fe6080604052600436106102305760003560e01c80636373a6b11161012e578063a22cb465116100ab578063d031370b1161006f578063d031370b14610826578063e985e9c51461084f578063eb8d24441461088c578063f2fde38b146108b7578063f47c84c5146108e057610230565b8063a22cb46514610745578063b88d4fde1461076e578063c078e77414610797578063c4e37095146107c0578063c87b56dd146107e957610230565b8063715018a6116100f2578063715018a61461067f5780638462151c146106965780638da5cb5b146106d357806395d89b41146106fe578063a0712d681461072957610230565b80636373a6b114610586578063707ff426146105b157806370a08231146105ee578063711897421461062b5780637146bd081461065457610230565b806323b872dd116101bc57806342842e0e1161018057806342842e0e1461048f5780634b369a61146104b85780634f6ccce7146104e357806355f804b3146105205780636352211e1461054957610230565b806323b872dd146103c057806328f0ecc4146103e95780632f745c59146104125780633ccfd60b1461044f5780633fa40f941461046657610230565b80631096952311610203578063109695231461030357806311e776fe1461032c57806318160ddd1461035557806318b20071146103805780631a5e2a36146103a957610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613bf7565b61090b565b60405161026991906147ba565b60405180910390f35b34801561027e57600080fd5b50610287610985565b60405161029491906147d5565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613c8a565b610a17565b6040516102d19190614731565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613b51565b610a9c565b005b34801561030f57600080fd5b5061032a60048036038101906103259190613c49565b610bb4565b005b34801561033857600080fd5b50610353600480360381019061034e9190613c8a565b610c4a565b005b34801561036157600080fd5b5061036a610cd0565b6040516103779190614b52565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190613c8a565b610cdd565b005b3480156103b557600080fd5b506103be610d63565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190613a4b565b610e71565b005b3480156103f557600080fd5b50610410600480360381019061040b91906139e6565b610ed1565b005b34801561041e57600080fd5b5061043960048036038101906104349190613b51565b610f91565b6040516104469190614b52565b60405180910390f35b34801561045b57600080fd5b50610464611036565b005b34801561047257600080fd5b5061048d60048036038101906104889190613b8d565b6112f2565b005b34801561049b57600080fd5b506104b660048036038101906104b19190613a4b565b611517565b005b3480156104c457600080fd5b506104cd611537565b6040516104da9190614b52565b60405180910390f35b3480156104ef57600080fd5b5061050a60048036038101906105059190613c8a565b61153d565b6040516105179190614b52565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190613c49565b6115d4565b005b34801561055557600080fd5b50610570600480360381019061056b9190613c8a565b61166a565b60405161057d9190614731565b60405180910390f35b34801561059257600080fd5b5061059b61171c565b6040516105a891906147d5565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190613c8a565b6117aa565b6040516105e59190614b37565b60405180910390f35b3480156105fa57600080fd5b50610615600480360381019061061091906139e6565b611829565b6040516106229190614b52565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190613c8a565b6118e1565b005b34801561066057600080fd5b50610669611967565b6040516106769190614b52565b60405180910390f35b34801561068b57600080fd5b5061069461196d565b005b3480156106a257600080fd5b506106bd60048036038101906106b891906139e6565b611aaa565b6040516106ca9190614798565b60405180910390f35b3480156106df57600080fd5b506106e8611ba4565b6040516106f59190614731565b60405180910390f35b34801561070a57600080fd5b50610713611bce565b60405161072091906147d5565b60405180910390f35b610743600480360381019061073e9190613c8a565b611c60565b005b34801561075157600080fd5b5061076c60048036038101906107679190613b15565b611e71565b005b34801561077a57600080fd5b5061079560048036038101906107909190613a9a565b611ff2565b005b3480156107a357600080fd5b506107be60048036038101906107b991906139e6565b612054565b005b3480156107cc57600080fd5b506107e760048036038101906107e29190613bce565b612114565b005b3480156107f557600080fd5b50610810600480360381019061080b9190613c8a565b6121ad565b60405161081d91906147d5565b60405180910390f35b34801561083257600080fd5b5061084d60048036038101906108489190613c8a565b612254565b005b34801561085b57600080fd5b5061087660048036038101906108719190613a0f565b6123f6565b60405161088391906147ba565b60405180910390f35b34801561089857600080fd5b506108a161248a565b6040516108ae91906147ba565b60405180910390f35b3480156108c357600080fd5b506108de60048036038101906108d991906139e6565b61249d565b005b3480156108ec57600080fd5b506108f5612649565b6040516109029190614b52565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097e575061097d8261264f565b5b9050919050565b60606000805461099490614eb3565b80601f01602080910402602001604051908101604052809291908181526020018280546109c090614eb3565b8015610a0d5780601f106109e257610100808354040283529160200191610a0d565b820191906000526020600020905b8154815290600101906020018083116109f057829003601f168201915b5050505050905090565b6000610a2282612731565b610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5890614a17565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa78261166a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f90614ab7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3761279d565b73ffffffffffffffffffffffffffffffffffffffff161480610b665750610b6581610b6061279d565b6123f6565b5b610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c90614957565b60405180910390fd5b610baf83836127a5565b505050565b610bbc61279d565b73ffffffffffffffffffffffffffffffffffffffff16610bda611ba4565b73ffffffffffffffffffffffffffffffffffffffff1614610c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2790614a37565b60405180910390fd5b80600c9080519060200190610c46929190613761565b5050565b610c5261279d565b73ffffffffffffffffffffffffffffffffffffffff16610c70611ba4565b73ffffffffffffffffffffffffffffffffffffffff1614610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd90614a37565b60405180910390fd5b80600e8190555050565b6000600880549050905090565b610ce561279d565b73ffffffffffffffffffffffffffffffffffffffff16610d03611ba4565b73ffffffffffffffffffffffffffffffffffffffff1614610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5090614a37565b60405180910390fd5b80600f8190555050565b610d6b61279d565b73ffffffffffffffffffffffffffffffffffffffff16610d89611ba4565b73ffffffffffffffffffffffffffffffffffffffff1614610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd690614a37565b60405180910390fd5b60004711610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1990614a97565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e6d573d6000803e3d6000fd5b5050565b610e82610e7c61279d565b8261285e565b610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb890614ad7565b60405180910390fd5b610ecc83838361293c565b505050565b610ed961279d565b73ffffffffffffffffffffffffffffffffffffffff16610ef7611ba4565b73ffffffffffffffffffffffffffffffffffffffff1614610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4490614a37565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610f9c83611829565b8210610fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd490614817565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61103e61279d565b73ffffffffffffffffffffffffffffffffffffffff1661105c611ba4565b73ffffffffffffffffffffffffffffffffffffffff16146110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a990614a37565b60405180910390fd5b600047116110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec90614a97565b60405180910390fd5b600047905060006111236064611115601985612b9890919063ffffffff16565b612bae90919063ffffffff16565b9050600061114e6064611140604b86612b9890919063ffffffff16565b612bae90919063ffffffff16565b90506000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516111989061471c565b60006040518083038185875af1925050503d80600081146111d5576040519150601f19603f3d011682016040523d82523d6000602084013e6111da565b606091505b505090508061121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590614b17565b60405180910390fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516112649061471c565b60006040518083038185875af1925050503d80600081146112a1576040519150601f19603f3d011682016040523d82523d6000602084013e6112a6565b606091505b505080915050806112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e3906147f7565b60405180910390fd5b50505050565b6112fa61279d565b73ffffffffffffffffffffffffffffffffffffffff16611318611ba4565b73ffffffffffffffffffffffffffffffffffffffff161461136e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136590614a37565b60405180910390fd5b600e5461138c825161137e610cd0565b612bc490919063ffffffff16565b11156113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c4906149d7565b60405180910390fd5b6000429050600080600090505b8351811015611511576113fe60016113f0610cd0565b612bc490919063ffffffff16565b9150600e5482116114fe57611453848281518110611445577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015183612bda565b604051806020016040528084815250600b6000848152602001908152602001600020600082015181600001559050507f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f828583815181106114dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151856040516114f593929190614b6d565b60405180910390a15b808061150990614ee5565b9150506113da565b50505050565b61153283838360405180602001604052806000815250611ff2565b505050565b600f5481565b6000611547610cd0565b8210611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f90614af7565b60405180910390fd5b600882815481106115c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6115dc61279d565b73ffffffffffffffffffffffffffffffffffffffff166115fa611ba4565b73ffffffffffffffffffffffffffffffffffffffff1614611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790614a37565b60405180910390fd5b8060119080519060200190611666929190613761565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a90614997565b60405180910390fd5b80915050919050565b600c805461172990614eb3565b80601f016020809104026020016040519081016040528092919081815260200182805461175590614eb3565b80156117a25780601f10611777576101008083540402835291602001916117a2565b820191906000526020600020905b81548152906001019060200180831161178557829003601f168201915b505050505081565b6117b26137e7565b6117bb82612731565b6117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f190614937565b60405180910390fd5b600b60008381526020019081526020016000206040518060200160405290816000820154815250509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561189a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189190614977565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118e961279d565b73ffffffffffffffffffffffffffffffffffffffff16611907611ba4565b73ffffffffffffffffffffffffffffffffffffffff161461195d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195490614a37565b60405180910390fd5b80600d8190555050565b600d5481565b61197561279d565b73ffffffffffffffffffffffffffffffffffffffff16611993611ba4565b73ffffffffffffffffffffffffffffffffffffffff16146119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090614a37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60606000611ab783611829565b905060008167ffffffffffffffff811115611afb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611b295781602001602082028036833780820191505090505b50905060005b82811015611b9957611b418582610f91565b828281518110611b7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611b9190614ee5565b915050611b2f565b508092505050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611bdd90614eb3565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0990614eb3565b8015611c565780601f10611c2b57610100808354040283529160200191611c56565b820191906000526020600020905b815481529060010190602001808311611c3957829003601f168201915b5050505050905090565b601060009054906101000a900460ff16611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca6906148d7565b60405180910390fd5b600d54811115611cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ceb90614917565b60405180910390fd5b600e54611d1182611d03610cd0565b612bc490919063ffffffff16565b1115611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d49906149d7565b60405180910390fd5b34611d6882600f54612b9890919063ffffffff16565b1115611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da0906149b7565b60405180910390fd5b6000429050600080600190505b838111611e6b57611dd86001611dca610cd0565b612bc490919063ffffffff16565b9150600e548211611e5857611ded3383612bda565b604051806020016040528084815250600b6000848152602001908152602001600020600082015181600001559050507f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f823385604051611e4f93929190614b6d565b60405180910390a15b8080611e6390614ee5565b915050611db6565b50505050565b611e7961279d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ede906148b7565b60405180910390fd5b8060056000611ef461279d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fa161279d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fe691906147ba565b60405180910390a35050565b612003611ffd61279d565b8361285e565b612042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203990614ad7565b60405180910390fd5b61204e84848484612bf8565b50505050565b61205c61279d565b73ffffffffffffffffffffffffffffffffffffffff1661207a611ba4565b73ffffffffffffffffffffffffffffffffffffffff16146120d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c790614a37565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61211c61279d565b73ffffffffffffffffffffffffffffffffffffffff1661213a611ba4565b73ffffffffffffffffffffffffffffffffffffffff1614612190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218790614a37565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b60606121b882612731565b6121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee90614a77565b60405180910390fd5b6000612201612c54565b90506000815111612221576040518060200160405280600081525061224c565b8061222b84612ce6565b60405160200161223c9291906146f8565b6040516020818303038152906040525b915050919050565b61225c61279d565b73ffffffffffffffffffffffffffffffffffffffff1661227a611ba4565b73ffffffffffffffffffffffffffffffffffffffff16146122d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c790614a37565b60405180910390fd5b600e546122ed826122df610cd0565b612bc490919063ffffffff16565b111561232e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612325906149d7565b60405180910390fd5b6000804290506000600190505b8381116123f05761235d600161234f610cd0565b612bc490919063ffffffff16565b9250600e5483116123dd576123723384612bda565b604051806020016040528083815250600b6000858152602001908152602001600020600082015181600001559050507f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f8333846040516123d493929190614b6d565b60405180910390a15b80806123e890614ee5565b91505061233b565b50505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b6124a561279d565b73ffffffffffffffffffffffffffffffffffffffff166124c3611ba4565b73ffffffffffffffffffffffffffffffffffffffff1614612519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251090614a37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258090614857565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061271a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061272a575061272982612e93565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128188361166a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061286982612731565b6128a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289f906148f7565b60405180910390fd5b60006128b38361166a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061292257508373ffffffffffffffffffffffffffffffffffffffff1661290a84610a17565b73ffffffffffffffffffffffffffffffffffffffff16145b80612933575061293281856123f6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661295c8261166a565b73ffffffffffffffffffffffffffffffffffffffff16146129b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a990614a57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1990614897565b60405180910390fd5b612a2d838383612efd565b612a386000826127a5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a889190614dc9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612adf9190614ce8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183612ba69190614d6f565b905092915050565b60008183612bbc9190614d3e565b905092915050565b60008183612bd29190614ce8565b905092915050565b612bf4828260405180602001604052806000815250613011565b5050565b612c0384848461293c565b612c0f8484848461306c565b612c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4590614837565b60405180910390fd5b50505050565b606060118054612c6390614eb3565b80601f0160208091040260200160405190810160405280929190818152602001828054612c8f90614eb3565b8015612cdc5780601f10612cb157610100808354040283529160200191612cdc565b820191906000526020600020905b815481529060010190602001808311612cbf57829003601f168201915b5050505050905090565b60606000821415612d2e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e8e565b600082905060005b60008214612d60578080612d4990614ee5565b915050600a82612d599190614d3e565b9150612d36565b60008167ffffffffffffffff811115612da2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612dd45781602001600182028036833780820191505090505b5090505b60008514612e8757600182612ded9190614dc9565b9150600a85612dfc9190614f2e565b6030612e089190614ce8565b60f81b818381518110612e44577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e809190614d3e565b9450612dd8565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f08838383613203565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f4b57612f4681613208565b612f8a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f8957612f888382613251565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fcd57612fc8816133be565b61300c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461300b5761300a8282613501565b5b5b505050565b61301b8383613580565b613028600084848461306c565b613067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305e90614837565b60405180910390fd5b505050565b600061308d8473ffffffffffffffffffffffffffffffffffffffff1661374e565b156131f6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130b661279d565b8786866040518563ffffffff1660e01b81526004016130d8949392919061474c565b602060405180830381600087803b1580156130f257600080fd5b505af192505050801561312357506040513d601f19601f820116820180604052508101906131209190613c20565b60015b6131a6573d8060008114613153576040519150601f19603f3d011682016040523d82523d6000602084013e613158565b606091505b5060008151141561319e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319590614837565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506131fb565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161325e84611829565b6132689190614dc9565b905060006007600084815260200190815260200160002054905081811461334d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133d29190614dc9565b9050600060096000848152602001908152602001600020549050600060088381548110613428577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613470577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806134e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061350c83611829565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e7906149f7565b60405180910390fd5b6135f981612731565b15613639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363090614877565b60405180910390fd5b61364560008383612efd565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136959190614ce8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461376d90614eb3565b90600052602060002090601f01602090048101928261378f57600085556137d6565b82601f106137a857805160ff19168380011785556137d6565b828001600101855582156137d6579182015b828111156137d55782518255916020019190600101906137ba565b5b5090506137e391906137fa565b5090565b6040518060200160405280600081525090565b5b808211156138135760008160009055506001016137fb565b5090565b600061382a61382584614bd5565b614ba4565b9050808382526020820190508285602086028201111561384957600080fd5b60005b85811015613879578161385f88826138ff565b84526020840193506020830192505060018101905061384c565b5050509392505050565b600061389661389184614c01565b614ba4565b9050828152602081018484840111156138ae57600080fd5b6138b9848285614e71565b509392505050565b60006138d46138cf84614c31565b614ba4565b9050828152602081018484840111156138ec57600080fd5b6138f7848285614e71565b509392505050565b60008135905061390e8161502c565b92915050565b600082601f83011261392557600080fd5b8135613935848260208601613817565b91505092915050565b60008135905061394d81615043565b92915050565b6000813590506139628161505a565b92915050565b6000815190506139778161505a565b92915050565b600082601f83011261398e57600080fd5b813561399e848260208601613883565b91505092915050565b600082601f8301126139b857600080fd5b81356139c88482602086016138c1565b91505092915050565b6000813590506139e081615071565b92915050565b6000602082840312156139f857600080fd5b6000613a06848285016138ff565b91505092915050565b60008060408385031215613a2257600080fd5b6000613a30858286016138ff565b9250506020613a41858286016138ff565b9150509250929050565b600080600060608486031215613a6057600080fd5b6000613a6e868287016138ff565b9350506020613a7f868287016138ff565b9250506040613a90868287016139d1565b9150509250925092565b60008060008060808587031215613ab057600080fd5b6000613abe878288016138ff565b9450506020613acf878288016138ff565b9350506040613ae0878288016139d1565b925050606085013567ffffffffffffffff811115613afd57600080fd5b613b098782880161397d565b91505092959194509250565b60008060408385031215613b2857600080fd5b6000613b36858286016138ff565b9250506020613b478582860161393e565b9150509250929050565b60008060408385031215613b6457600080fd5b6000613b72858286016138ff565b9250506020613b83858286016139d1565b9150509250929050565b600060208284031215613b9f57600080fd5b600082013567ffffffffffffffff811115613bb957600080fd5b613bc584828501613914565b91505092915050565b600060208284031215613be057600080fd5b6000613bee8482850161393e565b91505092915050565b600060208284031215613c0957600080fd5b6000613c1784828501613953565b91505092915050565b600060208284031215613c3257600080fd5b6000613c4084828501613968565b91505092915050565b600060208284031215613c5b57600080fd5b600082013567ffffffffffffffff811115613c7557600080fd5b613c81848285016139a7565b91505092915050565b600060208284031215613c9c57600080fd5b6000613caa848285016139d1565b91505092915050565b6000613cbf83836146da565b60208301905092915050565b613cd481614dfd565b82525050565b6000613ce582614c71565b613cef8185614c9f565b9350613cfa83614c61565b8060005b83811015613d2b578151613d128882613cb3565b9750613d1d83614c92565b925050600181019050613cfe565b5085935050505092915050565b613d4181614e0f565b82525050565b6000613d5282614c7c565b613d5c8185614cb0565b9350613d6c818560208601614e80565b613d758161501b565b840191505092915050565b6000613d8b82614c87565b613d958185614ccc565b9350613da5818560208601614e80565b613dae8161501b565b840191505092915050565b6000613dc482614c87565b613dce8185614cdd565b9350613dde818560208601614e80565b80840191505092915050565b6000613df7601f83614ccc565b91507f77616c6c657443726561746f72205769746864726177616c206661696c6564006000830152602082019050919050565b6000613e37602b83614ccc565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613e9d603283614ccc565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613f03602683614ccc565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f69601c83614ccc565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613fa9602483614ccc565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061400f601983614ccc565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061404f601f83614ccc565b91507f4d696e74206973206e6f7420617661696c61626c65207269676874206e6f77006000830152602082019050919050565b600061408f602c83614ccc565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006140f5602183614ccc565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061415b601483614ccc565b91507f546f6b656e20776173206e6f74206d696e7465640000000000000000000000006000830152602082019050919050565b600061419b603883614ccc565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614201602a83614ccc565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614267602983614ccc565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006142cd601983614ccc565b91507f56616c75652073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b600061430d602083614ccc565b91507f507572636861736520776f756c6420657863656564206d617820737570706c796000830152602082019050919050565b600061434d602083614ccc565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061438d602c83614ccc565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006143f3602083614ccc565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614433602983614ccc565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614499602f83614ccc565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006144ff601683614ccc565b91507f4e6f2062616c616e636520746f207769746864726177000000000000000000006000830152602082019050919050565b600061453f602183614ccc565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145a5600083614cc1565b9150600082019050919050565b60006145bf603183614ccc565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614625602c83614ccc565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b600061468b601b83614ccc565b91507f77616c6c6574446576205769746864726177616c206661696c656400000000006000830152602082019050919050565b6020820160008201516146d460008501826146da565b50505050565b6146e381614e67565b82525050565b6146f281614e67565b82525050565b60006147048285613db9565b91506147108284613db9565b91508190509392505050565b600061472782614598565b9150819050919050565b60006020820190506147466000830184613ccb565b92915050565b60006080820190506147616000830187613ccb565b61476e6020830186613ccb565b61477b60408301856146e9565b818103606083015261478d8184613d47565b905095945050505050565b600060208201905081810360008301526147b28184613cda565b905092915050565b60006020820190506147cf6000830184613d38565b92915050565b600060208201905081810360008301526147ef8184613d80565b905092915050565b6000602082019050818103600083015261481081613dea565b9050919050565b6000602082019050818103600083015261483081613e2a565b9050919050565b6000602082019050818103600083015261485081613e90565b9050919050565b6000602082019050818103600083015261487081613ef6565b9050919050565b6000602082019050818103600083015261489081613f5c565b9050919050565b600060208201905081810360008301526148b081613f9c565b9050919050565b600060208201905081810360008301526148d081614002565b9050919050565b600060208201905081810360008301526148f081614042565b9050919050565b6000602082019050818103600083015261491081614082565b9050919050565b60006020820190508181036000830152614930816140e8565b9050919050565b600060208201905081810360008301526149508161414e565b9050919050565b600060208201905081810360008301526149708161418e565b9050919050565b60006020820190508181036000830152614990816141f4565b9050919050565b600060208201905081810360008301526149b08161425a565b9050919050565b600060208201905081810360008301526149d0816142c0565b9050919050565b600060208201905081810360008301526149f081614300565b9050919050565b60006020820190508181036000830152614a1081614340565b9050919050565b60006020820190508181036000830152614a3081614380565b9050919050565b60006020820190508181036000830152614a50816143e6565b9050919050565b60006020820190508181036000830152614a7081614426565b9050919050565b60006020820190508181036000830152614a908161448c565b9050919050565b60006020820190508181036000830152614ab0816144f2565b9050919050565b60006020820190508181036000830152614ad081614532565b9050919050565b60006020820190508181036000830152614af0816145b2565b9050919050565b60006020820190508181036000830152614b1081614618565b9050919050565b60006020820190508181036000830152614b308161467e565b9050919050565b6000602082019050614b4c60008301846146be565b92915050565b6000602082019050614b6760008301846146e9565b92915050565b6000606082019050614b8260008301866146e9565b614b8f6020830185613ccb565b614b9c60408301846146e9565b949350505050565b6000604051905081810181811067ffffffffffffffff82111715614bcb57614bca614fec565b5b8060405250919050565b600067ffffffffffffffff821115614bf057614bef614fec565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c1c57614c1b614fec565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614c4c57614c4b614fec565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614cf382614e67565b9150614cfe83614e67565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d3357614d32614f5f565b5b828201905092915050565b6000614d4982614e67565b9150614d5483614e67565b925082614d6457614d63614f8e565b5b828204905092915050565b6000614d7a82614e67565b9150614d8583614e67565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614dbe57614dbd614f5f565b5b828202905092915050565b6000614dd482614e67565b9150614ddf83614e67565b925082821015614df257614df1614f5f565b5b828203905092915050565b6000614e0882614e47565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614e9e578082015181840152602081019050614e83565b83811115614ead576000848401525b50505050565b60006002820490506001821680614ecb57607f821691505b60208210811415614edf57614ede614fbd565b5b50919050565b6000614ef082614e67565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f2357614f22614f5f565b5b600182019050919050565b6000614f3982614e67565b9150614f4483614e67565b925082614f5457614f53614f8e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61503581614dfd565b811461504057600080fd5b50565b61504c81614e0f565b811461505757600080fd5b50565b61506381614e1b565b811461506e57600080fd5b50565b61507a81614e67565b811461508557600080fd5b5056fea2646970667358221220f243edb1213144c97a986876bb0a2e2c1cae54582168e6912d504502e99cef2564736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000146942616c6c7a3a2050726976617465204579657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000084942414c4c5a5045000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f6170692e6962616c6c7a2e696f2f6d657461646174612f00

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636373a6b11161012e578063a22cb465116100ab578063d031370b1161006f578063d031370b14610826578063e985e9c51461084f578063eb8d24441461088c578063f2fde38b146108b7578063f47c84c5146108e057610230565b8063a22cb46514610745578063b88d4fde1461076e578063c078e77414610797578063c4e37095146107c0578063c87b56dd146107e957610230565b8063715018a6116100f2578063715018a61461067f5780638462151c146106965780638da5cb5b146106d357806395d89b41146106fe578063a0712d681461072957610230565b80636373a6b114610586578063707ff426146105b157806370a08231146105ee578063711897421461062b5780637146bd081461065457610230565b806323b872dd116101bc57806342842e0e1161018057806342842e0e1461048f5780634b369a61146104b85780634f6ccce7146104e357806355f804b3146105205780636352211e1461054957610230565b806323b872dd146103c057806328f0ecc4146103e95780632f745c59146104125780633ccfd60b1461044f5780633fa40f941461046657610230565b80631096952311610203578063109695231461030357806311e776fe1461032c57806318160ddd1461035557806318b20071146103805780631a5e2a36146103a957610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613bf7565b61090b565b60405161026991906147ba565b60405180910390f35b34801561027e57600080fd5b50610287610985565b60405161029491906147d5565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613c8a565b610a17565b6040516102d19190614731565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613b51565b610a9c565b005b34801561030f57600080fd5b5061032a60048036038101906103259190613c49565b610bb4565b005b34801561033857600080fd5b50610353600480360381019061034e9190613c8a565b610c4a565b005b34801561036157600080fd5b5061036a610cd0565b6040516103779190614b52565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190613c8a565b610cdd565b005b3480156103b557600080fd5b506103be610d63565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190613a4b565b610e71565b005b3480156103f557600080fd5b50610410600480360381019061040b91906139e6565b610ed1565b005b34801561041e57600080fd5b5061043960048036038101906104349190613b51565b610f91565b6040516104469190614b52565b60405180910390f35b34801561045b57600080fd5b50610464611036565b005b34801561047257600080fd5b5061048d60048036038101906104889190613b8d565b6112f2565b005b34801561049b57600080fd5b506104b660048036038101906104b19190613a4b565b611517565b005b3480156104c457600080fd5b506104cd611537565b6040516104da9190614b52565b60405180910390f35b3480156104ef57600080fd5b5061050a60048036038101906105059190613c8a565b61153d565b6040516105179190614b52565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190613c49565b6115d4565b005b34801561055557600080fd5b50610570600480360381019061056b9190613c8a565b61166a565b60405161057d9190614731565b60405180910390f35b34801561059257600080fd5b5061059b61171c565b6040516105a891906147d5565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190613c8a565b6117aa565b6040516105e59190614b37565b60405180910390f35b3480156105fa57600080fd5b50610615600480360381019061061091906139e6565b611829565b6040516106229190614b52565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190613c8a565b6118e1565b005b34801561066057600080fd5b50610669611967565b6040516106769190614b52565b60405180910390f35b34801561068b57600080fd5b5061069461196d565b005b3480156106a257600080fd5b506106bd60048036038101906106b891906139e6565b611aaa565b6040516106ca9190614798565b60405180910390f35b3480156106df57600080fd5b506106e8611ba4565b6040516106f59190614731565b60405180910390f35b34801561070a57600080fd5b50610713611bce565b60405161072091906147d5565b60405180910390f35b610743600480360381019061073e9190613c8a565b611c60565b005b34801561075157600080fd5b5061076c60048036038101906107679190613b15565b611e71565b005b34801561077a57600080fd5b5061079560048036038101906107909190613a9a565b611ff2565b005b3480156107a357600080fd5b506107be60048036038101906107b991906139e6565b612054565b005b3480156107cc57600080fd5b506107e760048036038101906107e29190613bce565b612114565b005b3480156107f557600080fd5b50610810600480360381019061080b9190613c8a565b6121ad565b60405161081d91906147d5565b60405180910390f35b34801561083257600080fd5b5061084d60048036038101906108489190613c8a565b612254565b005b34801561085b57600080fd5b5061087660048036038101906108719190613a0f565b6123f6565b60405161088391906147ba565b60405180910390f35b34801561089857600080fd5b506108a161248a565b6040516108ae91906147ba565b60405180910390f35b3480156108c357600080fd5b506108de60048036038101906108d991906139e6565b61249d565b005b3480156108ec57600080fd5b506108f5612649565b6040516109029190614b52565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097e575061097d8261264f565b5b9050919050565b60606000805461099490614eb3565b80601f01602080910402602001604051908101604052809291908181526020018280546109c090614eb3565b8015610a0d5780601f106109e257610100808354040283529160200191610a0d565b820191906000526020600020905b8154815290600101906020018083116109f057829003601f168201915b5050505050905090565b6000610a2282612731565b610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5890614a17565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa78261166a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f90614ab7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3761279d565b73ffffffffffffffffffffffffffffffffffffffff161480610b665750610b6581610b6061279d565b6123f6565b5b610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c90614957565b60405180910390fd5b610baf83836127a5565b505050565b610bbc61279d565b73ffffffffffffffffffffffffffffffffffffffff16610bda611ba4565b73ffffffffffffffffffffffffffffffffffffffff1614610c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2790614a37565b60405180910390fd5b80600c9080519060200190610c46929190613761565b5050565b610c5261279d565b73ffffffffffffffffffffffffffffffffffffffff16610c70611ba4565b73ffffffffffffffffffffffffffffffffffffffff1614610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd90614a37565b60405180910390fd5b80600e8190555050565b6000600880549050905090565b610ce561279d565b73ffffffffffffffffffffffffffffffffffffffff16610d03611ba4565b73ffffffffffffffffffffffffffffffffffffffff1614610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5090614a37565b60405180910390fd5b80600f8190555050565b610d6b61279d565b73ffffffffffffffffffffffffffffffffffffffff16610d89611ba4565b73ffffffffffffffffffffffffffffffffffffffff1614610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd690614a37565b60405180910390fd5b60004711610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1990614a97565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e6d573d6000803e3d6000fd5b5050565b610e82610e7c61279d565b8261285e565b610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb890614ad7565b60405180910390fd5b610ecc83838361293c565b505050565b610ed961279d565b73ffffffffffffffffffffffffffffffffffffffff16610ef7611ba4565b73ffffffffffffffffffffffffffffffffffffffff1614610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4490614a37565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610f9c83611829565b8210610fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd490614817565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61103e61279d565b73ffffffffffffffffffffffffffffffffffffffff1661105c611ba4565b73ffffffffffffffffffffffffffffffffffffffff16146110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a990614a37565b60405180910390fd5b600047116110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec90614a97565b60405180910390fd5b600047905060006111236064611115601985612b9890919063ffffffff16565b612bae90919063ffffffff16565b9050600061114e6064611140604b86612b9890919063ffffffff16565b612bae90919063ffffffff16565b90506000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516111989061471c565b60006040518083038185875af1925050503d80600081146111d5576040519150601f19603f3d011682016040523d82523d6000602084013e6111da565b606091505b505090508061121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590614b17565b60405180910390fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516112649061471c565b60006040518083038185875af1925050503d80600081146112a1576040519150601f19603f3d011682016040523d82523d6000602084013e6112a6565b606091505b505080915050806112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e3906147f7565b60405180910390fd5b50505050565b6112fa61279d565b73ffffffffffffffffffffffffffffffffffffffff16611318611ba4565b73ffffffffffffffffffffffffffffffffffffffff161461136e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136590614a37565b60405180910390fd5b600e5461138c825161137e610cd0565b612bc490919063ffffffff16565b11156113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c4906149d7565b60405180910390fd5b6000429050600080600090505b8351811015611511576113fe60016113f0610cd0565b612bc490919063ffffffff16565b9150600e5482116114fe57611453848281518110611445577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015183612bda565b604051806020016040528084815250600b6000848152602001908152602001600020600082015181600001559050507f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f828583815181106114dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151856040516114f593929190614b6d565b60405180910390a15b808061150990614ee5565b9150506113da565b50505050565b61153283838360405180602001604052806000815250611ff2565b505050565b600f5481565b6000611547610cd0565b8210611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f90614af7565b60405180910390fd5b600882815481106115c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6115dc61279d565b73ffffffffffffffffffffffffffffffffffffffff166115fa611ba4565b73ffffffffffffffffffffffffffffffffffffffff1614611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790614a37565b60405180910390fd5b8060119080519060200190611666929190613761565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a90614997565b60405180910390fd5b80915050919050565b600c805461172990614eb3565b80601f016020809104026020016040519081016040528092919081815260200182805461175590614eb3565b80156117a25780601f10611777576101008083540402835291602001916117a2565b820191906000526020600020905b81548152906001019060200180831161178557829003601f168201915b505050505081565b6117b26137e7565b6117bb82612731565b6117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f190614937565b60405180910390fd5b600b60008381526020019081526020016000206040518060200160405290816000820154815250509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561189a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189190614977565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118e961279d565b73ffffffffffffffffffffffffffffffffffffffff16611907611ba4565b73ffffffffffffffffffffffffffffffffffffffff161461195d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195490614a37565b60405180910390fd5b80600d8190555050565b600d5481565b61197561279d565b73ffffffffffffffffffffffffffffffffffffffff16611993611ba4565b73ffffffffffffffffffffffffffffffffffffffff16146119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090614a37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60606000611ab783611829565b905060008167ffffffffffffffff811115611afb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611b295781602001602082028036833780820191505090505b50905060005b82811015611b9957611b418582610f91565b828281518110611b7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611b9190614ee5565b915050611b2f565b508092505050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611bdd90614eb3565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0990614eb3565b8015611c565780601f10611c2b57610100808354040283529160200191611c56565b820191906000526020600020905b815481529060010190602001808311611c3957829003601f168201915b5050505050905090565b601060009054906101000a900460ff16611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca6906148d7565b60405180910390fd5b600d54811115611cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ceb90614917565b60405180910390fd5b600e54611d1182611d03610cd0565b612bc490919063ffffffff16565b1115611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d49906149d7565b60405180910390fd5b34611d6882600f54612b9890919063ffffffff16565b1115611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da0906149b7565b60405180910390fd5b6000429050600080600190505b838111611e6b57611dd86001611dca610cd0565b612bc490919063ffffffff16565b9150600e548211611e5857611ded3383612bda565b604051806020016040528084815250600b6000848152602001908152602001600020600082015181600001559050507f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f823385604051611e4f93929190614b6d565b60405180910390a15b8080611e6390614ee5565b915050611db6565b50505050565b611e7961279d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ede906148b7565b60405180910390fd5b8060056000611ef461279d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fa161279d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fe691906147ba565b60405180910390a35050565b612003611ffd61279d565b8361285e565b612042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203990614ad7565b60405180910390fd5b61204e84848484612bf8565b50505050565b61205c61279d565b73ffffffffffffffffffffffffffffffffffffffff1661207a611ba4565b73ffffffffffffffffffffffffffffffffffffffff16146120d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c790614a37565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61211c61279d565b73ffffffffffffffffffffffffffffffffffffffff1661213a611ba4565b73ffffffffffffffffffffffffffffffffffffffff1614612190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218790614a37565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b60606121b882612731565b6121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee90614a77565b60405180910390fd5b6000612201612c54565b90506000815111612221576040518060200160405280600081525061224c565b8061222b84612ce6565b60405160200161223c9291906146f8565b6040516020818303038152906040525b915050919050565b61225c61279d565b73ffffffffffffffffffffffffffffffffffffffff1661227a611ba4565b73ffffffffffffffffffffffffffffffffffffffff16146122d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c790614a37565b60405180910390fd5b600e546122ed826122df610cd0565b612bc490919063ffffffff16565b111561232e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612325906149d7565b60405180910390fd5b6000804290506000600190505b8381116123f05761235d600161234f610cd0565b612bc490919063ffffffff16565b9250600e5483116123dd576123723384612bda565b604051806020016040528083815250600b6000858152602001908152602001600020600082015181600001559050507f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f8333846040516123d493929190614b6d565b60405180910390a15b80806123e890614ee5565b91505061233b565b50505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b6124a561279d565b73ffffffffffffffffffffffffffffffffffffffff166124c3611ba4565b73ffffffffffffffffffffffffffffffffffffffff1614612519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251090614a37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258090614857565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061271a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061272a575061272982612e93565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128188361166a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061286982612731565b6128a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289f906148f7565b60405180910390fd5b60006128b38361166a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061292257508373ffffffffffffffffffffffffffffffffffffffff1661290a84610a17565b73ffffffffffffffffffffffffffffffffffffffff16145b80612933575061293281856123f6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661295c8261166a565b73ffffffffffffffffffffffffffffffffffffffff16146129b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a990614a57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1990614897565b60405180910390fd5b612a2d838383612efd565b612a386000826127a5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a889190614dc9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612adf9190614ce8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183612ba69190614d6f565b905092915050565b60008183612bbc9190614d3e565b905092915050565b60008183612bd29190614ce8565b905092915050565b612bf4828260405180602001604052806000815250613011565b5050565b612c0384848461293c565b612c0f8484848461306c565b612c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4590614837565b60405180910390fd5b50505050565b606060118054612c6390614eb3565b80601f0160208091040260200160405190810160405280929190818152602001828054612c8f90614eb3565b8015612cdc5780601f10612cb157610100808354040283529160200191612cdc565b820191906000526020600020905b815481529060010190602001808311612cbf57829003601f168201915b5050505050905090565b60606000821415612d2e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e8e565b600082905060005b60008214612d60578080612d4990614ee5565b915050600a82612d599190614d3e565b9150612d36565b60008167ffffffffffffffff811115612da2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612dd45781602001600182028036833780820191505090505b5090505b60008514612e8757600182612ded9190614dc9565b9150600a85612dfc9190614f2e565b6030612e089190614ce8565b60f81b818381518110612e44577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e809190614d3e565b9450612dd8565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f08838383613203565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f4b57612f4681613208565b612f8a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f8957612f888382613251565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fcd57612fc8816133be565b61300c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461300b5761300a8282613501565b5b5b505050565b61301b8383613580565b613028600084848461306c565b613067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305e90614837565b60405180910390fd5b505050565b600061308d8473ffffffffffffffffffffffffffffffffffffffff1661374e565b156131f6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130b661279d565b8786866040518563ffffffff1660e01b81526004016130d8949392919061474c565b602060405180830381600087803b1580156130f257600080fd5b505af192505050801561312357506040513d601f19601f820116820180604052508101906131209190613c20565b60015b6131a6573d8060008114613153576040519150601f19603f3d011682016040523d82523d6000602084013e613158565b606091505b5060008151141561319e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319590614837565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506131fb565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161325e84611829565b6132689190614dc9565b905060006007600084815260200190815260200160002054905081811461334d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133d29190614dc9565b9050600060096000848152602001908152602001600020549050600060088381548110613428577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613470577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806134e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061350c83611829565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e7906149f7565b60405180910390fd5b6135f981612731565b15613639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363090614877565b60405180910390fd5b61364560008383612efd565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136959190614ce8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461376d90614eb3565b90600052602060002090601f01602090048101928261378f57600085556137d6565b82601f106137a857805160ff19168380011785556137d6565b828001600101855582156137d6579182015b828111156137d55782518255916020019190600101906137ba565b5b5090506137e391906137fa565b5090565b6040518060200160405280600081525090565b5b808211156138135760008160009055506001016137fb565b5090565b600061382a61382584614bd5565b614ba4565b9050808382526020820190508285602086028201111561384957600080fd5b60005b85811015613879578161385f88826138ff565b84526020840193506020830192505060018101905061384c565b5050509392505050565b600061389661389184614c01565b614ba4565b9050828152602081018484840111156138ae57600080fd5b6138b9848285614e71565b509392505050565b60006138d46138cf84614c31565b614ba4565b9050828152602081018484840111156138ec57600080fd5b6138f7848285614e71565b509392505050565b60008135905061390e8161502c565b92915050565b600082601f83011261392557600080fd5b8135613935848260208601613817565b91505092915050565b60008135905061394d81615043565b92915050565b6000813590506139628161505a565b92915050565b6000815190506139778161505a565b92915050565b600082601f83011261398e57600080fd5b813561399e848260208601613883565b91505092915050565b600082601f8301126139b857600080fd5b81356139c88482602086016138c1565b91505092915050565b6000813590506139e081615071565b92915050565b6000602082840312156139f857600080fd5b6000613a06848285016138ff565b91505092915050565b60008060408385031215613a2257600080fd5b6000613a30858286016138ff565b9250506020613a41858286016138ff565b9150509250929050565b600080600060608486031215613a6057600080fd5b6000613a6e868287016138ff565b9350506020613a7f868287016138ff565b9250506040613a90868287016139d1565b9150509250925092565b60008060008060808587031215613ab057600080fd5b6000613abe878288016138ff565b9450506020613acf878288016138ff565b9350506040613ae0878288016139d1565b925050606085013567ffffffffffffffff811115613afd57600080fd5b613b098782880161397d565b91505092959194509250565b60008060408385031215613b2857600080fd5b6000613b36858286016138ff565b9250506020613b478582860161393e565b9150509250929050565b60008060408385031215613b6457600080fd5b6000613b72858286016138ff565b9250506020613b83858286016139d1565b9150509250929050565b600060208284031215613b9f57600080fd5b600082013567ffffffffffffffff811115613bb957600080fd5b613bc584828501613914565b91505092915050565b600060208284031215613be057600080fd5b6000613bee8482850161393e565b91505092915050565b600060208284031215613c0957600080fd5b6000613c1784828501613953565b91505092915050565b600060208284031215613c3257600080fd5b6000613c4084828501613968565b91505092915050565b600060208284031215613c5b57600080fd5b600082013567ffffffffffffffff811115613c7557600080fd5b613c81848285016139a7565b91505092915050565b600060208284031215613c9c57600080fd5b6000613caa848285016139d1565b91505092915050565b6000613cbf83836146da565b60208301905092915050565b613cd481614dfd565b82525050565b6000613ce582614c71565b613cef8185614c9f565b9350613cfa83614c61565b8060005b83811015613d2b578151613d128882613cb3565b9750613d1d83614c92565b925050600181019050613cfe565b5085935050505092915050565b613d4181614e0f565b82525050565b6000613d5282614c7c565b613d5c8185614cb0565b9350613d6c818560208601614e80565b613d758161501b565b840191505092915050565b6000613d8b82614c87565b613d958185614ccc565b9350613da5818560208601614e80565b613dae8161501b565b840191505092915050565b6000613dc482614c87565b613dce8185614cdd565b9350613dde818560208601614e80565b80840191505092915050565b6000613df7601f83614ccc565b91507f77616c6c657443726561746f72205769746864726177616c206661696c6564006000830152602082019050919050565b6000613e37602b83614ccc565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613e9d603283614ccc565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613f03602683614ccc565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f69601c83614ccc565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613fa9602483614ccc565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061400f601983614ccc565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061404f601f83614ccc565b91507f4d696e74206973206e6f7420617661696c61626c65207269676874206e6f77006000830152602082019050919050565b600061408f602c83614ccc565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006140f5602183614ccc565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061415b601483614ccc565b91507f546f6b656e20776173206e6f74206d696e7465640000000000000000000000006000830152602082019050919050565b600061419b603883614ccc565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614201602a83614ccc565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614267602983614ccc565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006142cd601983614ccc565b91507f56616c75652073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b600061430d602083614ccc565b91507f507572636861736520776f756c6420657863656564206d617820737570706c796000830152602082019050919050565b600061434d602083614ccc565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061438d602c83614ccc565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006143f3602083614ccc565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614433602983614ccc565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614499602f83614ccc565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006144ff601683614ccc565b91507f4e6f2062616c616e636520746f207769746864726177000000000000000000006000830152602082019050919050565b600061453f602183614ccc565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145a5600083614cc1565b9150600082019050919050565b60006145bf603183614ccc565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614625602c83614ccc565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b600061468b601b83614ccc565b91507f77616c6c6574446576205769746864726177616c206661696c656400000000006000830152602082019050919050565b6020820160008201516146d460008501826146da565b50505050565b6146e381614e67565b82525050565b6146f281614e67565b82525050565b60006147048285613db9565b91506147108284613db9565b91508190509392505050565b600061472782614598565b9150819050919050565b60006020820190506147466000830184613ccb565b92915050565b60006080820190506147616000830187613ccb565b61476e6020830186613ccb565b61477b60408301856146e9565b818103606083015261478d8184613d47565b905095945050505050565b600060208201905081810360008301526147b28184613cda565b905092915050565b60006020820190506147cf6000830184613d38565b92915050565b600060208201905081810360008301526147ef8184613d80565b905092915050565b6000602082019050818103600083015261481081613dea565b9050919050565b6000602082019050818103600083015261483081613e2a565b9050919050565b6000602082019050818103600083015261485081613e90565b9050919050565b6000602082019050818103600083015261487081613ef6565b9050919050565b6000602082019050818103600083015261489081613f5c565b9050919050565b600060208201905081810360008301526148b081613f9c565b9050919050565b600060208201905081810360008301526148d081614002565b9050919050565b600060208201905081810360008301526148f081614042565b9050919050565b6000602082019050818103600083015261491081614082565b9050919050565b60006020820190508181036000830152614930816140e8565b9050919050565b600060208201905081810360008301526149508161414e565b9050919050565b600060208201905081810360008301526149708161418e565b9050919050565b60006020820190508181036000830152614990816141f4565b9050919050565b600060208201905081810360008301526149b08161425a565b9050919050565b600060208201905081810360008301526149d0816142c0565b9050919050565b600060208201905081810360008301526149f081614300565b9050919050565b60006020820190508181036000830152614a1081614340565b9050919050565b60006020820190508181036000830152614a3081614380565b9050919050565b60006020820190508181036000830152614a50816143e6565b9050919050565b60006020820190508181036000830152614a7081614426565b9050919050565b60006020820190508181036000830152614a908161448c565b9050919050565b60006020820190508181036000830152614ab0816144f2565b9050919050565b60006020820190508181036000830152614ad081614532565b9050919050565b60006020820190508181036000830152614af0816145b2565b9050919050565b60006020820190508181036000830152614b1081614618565b9050919050565b60006020820190508181036000830152614b308161467e565b9050919050565b6000602082019050614b4c60008301846146be565b92915050565b6000602082019050614b6760008301846146e9565b92915050565b6000606082019050614b8260008301866146e9565b614b8f6020830185613ccb565b614b9c60408301846146e9565b949350505050565b6000604051905081810181811067ffffffffffffffff82111715614bcb57614bca614fec565b5b8060405250919050565b600067ffffffffffffffff821115614bf057614bef614fec565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c1c57614c1b614fec565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614c4c57614c4b614fec565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614cf382614e67565b9150614cfe83614e67565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d3357614d32614f5f565b5b828201905092915050565b6000614d4982614e67565b9150614d5483614e67565b925082614d6457614d63614f8e565b5b828204905092915050565b6000614d7a82614e67565b9150614d8583614e67565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614dbe57614dbd614f5f565b5b828202905092915050565b6000614dd482614e67565b9150614ddf83614e67565b925082821015614df257614df1614f5f565b5b828203905092915050565b6000614e0882614e47565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614e9e578082015181840152602081019050614e83565b83811115614ead576000848401525b50505050565b60006002820490506001821680614ecb57607f821691505b60208210811415614edf57614ede614fbd565b5b50919050565b6000614ef082614e67565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f2357614f22614f5f565b5b600182019050919050565b6000614f3982614e67565b9150614f4483614e67565b925082614f5457614f53614f8e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61503581614dfd565b811461504057600080fd5b50565b61504c81614e0f565b811461505757600080fd5b50565b61506381614e1b565b811461506e57600080fd5b50565b61507a81614e67565b811461508557600080fd5b5056fea2646970667358221220f243edb1213144c97a986876bb0a2e2c1cae54582168e6912d504502e99cef2564736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000146942616c6c7a3a2050726976617465204579657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000084942414c4c5a5045000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f6170692e6962616c6c7a2e696f2f6d657461646174612f00

-----Decoded View---------------
Arg [0] : name (string): iBallz: Private Eyes
Arg [1] : symbol (string): IBALLZPE
Arg [2] : _baseUri (string): https://api.iballz.io/metadata/

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [4] : 6942616c6c7a3a20507269766174652045796573000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 4942414c4c5a5045000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [8] : 68747470733a2f2f6170692e6962616c6c7a2e696f2f6d657461646174612f00


Deployed Bytecode Sourcemap

264:6183:15:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:234:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2343:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3755:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3306:388;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1437:120:15;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1598:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1546:111:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2070::15;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3798:211;;;;;;;;;;;;;:::i;:::-;;4619:300:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2236:114:15;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1222:253:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3236:524:15;;;;;;;;;;;;;:::i;:::-;;4653:590;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4985:149:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;863:48:15;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1729:230:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2867:93:15;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2046:235:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;626:29:15;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2549:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1784:205:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1740:107:15;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;723:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1693:145:12;;;;;;;;;;;;;:::i;:::-;;6110:335:15;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1061:85:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2505:102:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5282:782:15;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4039:290:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5200:282;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2401:98:15;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1917:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2673:353:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4053:548:15;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4395:162:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;950:31:15;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1987:240:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;802:32:15;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;909:234:4;1011:4;1049:35;1034:50;;;:11;:50;;;;:102;;;;1100:36;1124:11;1100:23;:36::i;:::-;1034:102;1027:109;;909:234;;;:::o;2343:98:3:-;2397:13;2429:5;2422:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2343:98;:::o;3755:217::-;3831:7;3858:16;3866:7;3858;:16::i;:::-;3850:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3941:15;:24;3957:7;3941:24;;;;;;;;;;;;;;;;;;;;;3934:31;;3755:217;;;:::o;3306:388::-;3386:13;3402:23;3417:7;3402:14;:23::i;:::-;3386:39;;3449:5;3443:11;;:2;:11;;;;3435:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3527:5;3511:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3536:37;3553:5;3560:12;:10;:12::i;:::-;3536:16;:37::i;:::-;3511:62;3503:152;;;;;;;;;;;;:::i;:::-;;;;;;;;;3666:21;3675:2;3679:7;3666:8;:21::i;:::-;3306:388;;;:::o;1437:120:15:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1535:15:15::1;1522:10;:28;;;;;;;;;;;;:::i;:::-;;1437:120:::0;:::o;1598:99::-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1680:10:15::1;1667;:23;;;;1598:99:::0;:::o;1546:111:4:-;1607:7;1633:10;:17;;;;1626:24;;1546:111;:::o;2070::15:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2161:13:15::1;2145;:29;;;;2070:111:::0;:::o;3798:211::-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3880:1:15::1;3856:21;:25;3848:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;3919:12;3934:21;3919:36;;3973:10;3965:28;;:37;3994:7;3965:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1343:1:12;3798:211:15:o:0;4619:300:3:-;4778:41;4797:12;:10;:12::i;:::-;4811:7;4778:18;:41::i;:::-;4770:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;4884:28;4894:4;4900:2;4904:7;4884:9;:28::i;:::-;4619:300;;;:::o;2236:114:15:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2329:14:15::1;2313:13;;:30;;;;;;;;;;;;;;;;;;2236:114:::0;:::o;1222:253:4:-;1319:7;1354:23;1371:5;1354:16;:23::i;:::-;1346:5;:31;1338:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1442:12;:19;1455:5;1442:19;;;;;;;;;;;;;;;:26;1462:5;1442:26;;;;;;;;;;;;1435:33;;1222:253;;;;:::o;3236:524:15:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3315:1:15::1;3291:21;:25;3283:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;3358:12;3373:21;3358:36;;3404:14;3421:24;3441:3;3421:15;3433:2;3421:7;:11;;:15;;;;:::i;:::-;:19;;:24;;;;:::i;:::-;3404:41;;3455:18;3476:24;3496:3;3476:15;3488:2;3476:7;:11;;:15;;;;:::i;:::-;:19;;:24;;;;:::i;:::-;3455:45;;3512:12;3530:9;;;;;;;;;;;:14;;3552:9;3530:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3511:55;;;3584:7;3576:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;3648:13;;;;;;;;;;;:18;;3674:13;3648:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3634:58;;;;;3710:7;3702:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;1343:1:12;;;;3236:524:15:o:0;4653:590::-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4771:10:15::1;;4734:33;4752:7;:14;4734:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:47;;4726:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;4828:16;4847:15;4828:34;;4872:15;4911:6:::0;4920:1:::1;4911:10;;4906:331;4927:7;:14;4923:1;:18;4906:331;;;4972:20;4990:1;4972:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;4962:30;;5021:10;;5010:7;:21;5006:221;;5051:30;5061:7;5069:1;5061:10;;;;;;;;;;;;;;;;;;;;;;5073:7;5051:9;:30::i;:::-;5125:22;;;;;;;;5138:8;5125:22;;::::0;5099:14:::1;:23;5114:7;5099:23;;;;;;;;;;;:48;;;;;;;;;;;5170:42;5182:7;5191;5199:1;5191:10;;;;;;;;;;;;;;;;;;;;;;5203:8;5170:42;;;;;;;;:::i;:::-;;;;;;;;5006:221;4943:3;;;;;:::i;:::-;;;;4906:331;;;;1343:1:12;;4653:590:15::0;:::o;4985:149:3:-;5088:39;5105:4;5111:2;5115:7;5088:39;;;;;;;;;;;;:16;:39::i;:::-;4985:149;;;:::o;863:48:15:-;;;;:::o;1729:230:4:-;1804:7;1839:30;:28;:30::i;:::-;1831:5;:38;1823:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1935:10;1946:5;1935:17;;;;;;;;;;;;;;;;;;;;;;;;1928:24;;1729:230;;;:::o;2867:93:15:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2946:7:15::1;2936;:17;;;;;;;;;;;;:::i;:::-;;2867:93:::0;:::o;2046:235:3:-;2118:7;2137:13;2153:7;:16;2161:7;2153:16;;;;;;;;;;;;;;;;;;;;;2137:32;;2204:1;2187:19;;:5;:19;;;;2179:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2269:5;2262:12;;;2046:235;;;:::o;626:29:15:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2549:200::-;2612:26;;:::i;:::-;2658:17;2666:8;2658:7;:17::i;:::-;2650:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;2718:14;:24;2733:8;2718:24;;;;;;;;;;;2711:31;;;;;;;;;;;;;;;;;;;2549:200;;;:::o;1784:205:3:-;1856:7;1900:1;1883:19;;:5;:19;;;;1875:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1966:9;:16;1976:5;1966:16;;;;;;;;;;;;;;;;1959:23;;1784:205;;;:::o;1740:107:15:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1828:12:15::1;1813;:27;;;;1740:107:::0;:::o;723:29::-;;;;:::o;1693:145:12:-;1284:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1799:1:::1;1762:40;;1783:6;;;;;;;;;;;1762:40;;;;;;;;;;;;1829:1;1812:6;;:19;;;;;;;;;;;;;;;;;;1693:145::o:0;6110:335:15:-;6171:16;6199:15;6217:17;6227:6;6217:9;:17::i;:::-;6199:35;;6245:25;6287:10;6273:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6245:53;;6312:6;6308:105;6328:10;6324:1;:14;6308:105;;;6372:30;6392:6;6400:1;6372:19;:30::i;:::-;6358:8;6367:1;6358:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;6340:3;;;;;:::i;:::-;;;;6308:105;;;;6430:8;6423:15;;;;6110:335;;;:::o;1061:85:12:-;1107:7;1133:6;;;;;;;;;;;1126:13;;1061:85;:::o;2505:102:3:-;2561:13;2593:7;2586:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2505:102;:::o;5282:782:15:-;5339:12;;;;;;;;;;;5331:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;5412:12;;5405:3;:19;;5397:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;5506:10;;5480:22;5498:3;5480:13;:11;:13::i;:::-;:17;;:22;;;;:::i;:::-;:36;;5472:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;5597:9;5571:22;5589:3;5571:13;;:17;;:22;;;;:::i;:::-;:35;;5563:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5646:16;5665:15;5646:34;;5690:12;5725:6;5734:1;5725:10;;5721:337;5742:3;5737:1;:8;5721:337;;5776:20;5794:1;5776:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;5766:30;;5825:10;;5814:7;:21;5810:238;;5855:30;5865:10;5877:7;5855:9;:30::i;:::-;5929:22;;;;;;;;5942:8;5929:22;;;5903:14;:23;5918:7;5903:23;;;;;;;;;;;:48;;;;;;;;;;;5991:42;6003:7;6012:10;6024:8;5991:42;;;;;;;;:::i;:::-;;;;;;;;5810:238;5747:3;;;;;:::i;:::-;;;;5721:337;;;;5282:782;;;:::o;4039:290:3:-;4153:12;:10;:12::i;:::-;4141:24;;:8;:24;;;;4133:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4251:8;4206:18;:32;4225:12;:10;:12::i;:::-;4206:32;;;;;;;;;;;;;;;:42;4239:8;4206:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4303:8;4274:48;;4289:12;:10;:12::i;:::-;4274:48;;;4313:8;4274:48;;;;;;:::i;:::-;;;;;;;;4039:290;;:::o;5200:282::-;5331:41;5350:12;:10;:12::i;:::-;5364:7;5331:18;:41::i;:::-;5323:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5436:39;5450:4;5456:2;5460:7;5469:5;5436:13;:39::i;:::-;5200:282;;;;:::o;2401:98:15:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2482:10:15::1;2470:9;;:22;;;;;;;;;;;;;;;;;;2401:98:::0;:::o;1917:96::-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1997:9:15::1;1982:12;;:24;;;;;;;;;;;;;;;;;;1917:96:::0;:::o;2673:353:3:-;2746:13;2779:16;2787:7;2779;:16::i;:::-;2771:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2858:21;2882:10;:8;:10::i;:::-;2858:34;;2933:1;2915:7;2909:21;:25;:110;;;;;;;;;;;;;;;;;2973:7;2982:18;:7;:16;:18::i;:::-;2956:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2909:110;2902:117;;;2673:353;;;:::o;4053:548:15:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4150:10:15::1;;4124:22;4142:3;4124:13;:11;:13::i;:::-;:17;;:22;;;;:::i;:::-;:36;;4116:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;4207:12;4229:16:::0;4248:15:::1;4229:34;;4279:6;4288:1;4279:10;;4274:321;4296:3;4291:1;:8;4274:321;;4330:20;4348:1;4330:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;4320:30;;4379:10;;4368:7;:21;4364:221;;4409:30;4419:10;4431:7;4409:9;:30::i;:::-;4483:22;;;;;;;;4496:8;4483:22;;::::0;4457:14:::1;:23;4472:7;4457:23;;;;;;;;;;;:48;;;;;;;;;;;4528:42;4540:7;4549:10;4561:8;4528:42;;;;;;;;:::i;:::-;;;;;;;;4364:221;4301:3;;;;;:::i;:::-;;;;4274:321;;;;1343:1:12;;4053:548:15::0;:::o;4395:162:3:-;4492:4;4515:18;:25;4534:5;4515:25;;;;;;;;;;;;;;;:35;4541:8;4515:35;;;;;;;;;;;;;;;;;;;;;;;;;4508:42;;4395:162;;;;:::o;950:31:15:-;;;;;;;;;;;;;:::o;1987:240:12:-;1284:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2095:1:::1;2075:22;;:8;:22;;;;2067:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2184:8;2155:38;;2176:6;;;;;;;;;;;2155:38;;;;;;;;;;;;2212:8;2203:6;;:17;;;;;;;;;;;;;;;;;;1987:240:::0;:::o;802:32:15:-;;;;:::o;1437:288:3:-;1539:4;1577:25;1562:40;;;:11;:40;;;;:104;;;;1633:33;1618:48;;;:11;:48;;;;1562:104;:156;;;;1682:36;1706:11;1682:23;:36::i;:::-;1562:156;1555:163;;1437:288;;;:::o;6916:125::-;6981:4;7032:1;7004:30;;:7;:16;7012:7;7004:16;;;;;;;;;;;;;;;;;;;;;:30;;;;6997:37;;6916:125;;;:::o;586:96:1:-;639:7;665:10;658:17;;586:96;:::o;10673:171:3:-;10774:2;10747:15;:24;10763:7;10747:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;10829:7;10825:2;10791:46;;10800:23;10815:7;10800:14;:23::i;:::-;10791:46;;;;;;;;;;;;10673:171;;:::o;7199:344::-;7292:4;7316:16;7324:7;7316;:16::i;:::-;7308:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7391:13;7407:23;7422:7;7407:14;:23::i;:::-;7391:39;;7459:5;7448:16;;:7;:16;;;:51;;;;7492:7;7468:31;;:20;7480:7;7468:11;:20::i;:::-;:31;;;7448:51;:87;;;;7503:32;7520:5;7527:7;7503:16;:32::i;:::-;7448:87;7440:96;;;7199:344;;;;:::o;10032:530::-;10156:4;10129:31;;:23;10144:7;10129:14;:23::i;:::-;:31;;;10121:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10238:1;10224:16;;:2;:16;;;;10216:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10292:39;10313:4;10319:2;10323:7;10292:20;:39::i;:::-;10393:29;10410:1;10414:7;10393:8;:29::i;:::-;10452:1;10433:9;:15;10443:4;10433:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10480:1;10463:9;:13;10473:2;10463:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10510:2;10491:7;:16;10499:7;10491:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10547:7;10543:2;10528:27;;10537:4;10528:27;;;;;;;;;;;;10032:530;;;:::o;3382:96:13:-;3440:7;3470:1;3466;:5;;;;:::i;:::-;3459:12;;3382:96;;;;:::o;3767:::-;3825:7;3855:1;3851;:5;;;;:::i;:::-;3844:12;;3767:96;;;;:::o;2672:::-;2730:7;2760:1;2756;:5;;;;:::i;:::-;2749:12;;2672:96;;;;:::o;7873:108:3:-;7948:26;7958:2;7962:7;7948:26;;;;;;;;;;;;:9;:26::i;:::-;7873:108;;:::o;6344:269::-;6457:28;6467:4;6473:2;6477:7;6457:9;:28::i;:::-;6503:48;6526:4;6532:2;6536:7;6545:5;6503:22;:48::i;:::-;6495:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6344:269;;;;:::o;3092:106:15:-;3152:13;3184:7;3177:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3092:106;:::o;271:703:14:-;327:13;553:1;544:5;:10;540:51;;;570:10;;;;;;;;;;;;;;;;;;;;;540:51;600:12;615:5;600:20;;630:14;654:75;669:1;661:4;:9;654:75;;686:8;;;;;:::i;:::-;;;;716:2;708:10;;;;;:::i;:::-;;;654:75;;;738:19;770:6;760:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;738:39;;787:150;803:1;794:5;:10;787:150;;830:1;820:11;;;;;:::i;:::-;;;896:2;888:5;:10;;;;:::i;:::-;875:2;:24;;;;:::i;:::-;862:39;;845:6;852;845:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;924:2;915:11;;;;;:::i;:::-;;;787:150;;;960:6;946:21;;;;;271:703;;;;:::o;763:155:2:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;2555:542:4:-;2664:45;2691:4;2697:2;2701:7;2664:26;:45::i;:::-;2740:1;2724:18;;:4;:18;;;2720:183;;;2758:40;2790:7;2758:31;:40::i;:::-;2720:183;;;2827:2;2819:10;;:4;:10;;;2815:88;;2845:47;2878:4;2884:7;2845:32;:47::i;:::-;2815:88;2720:183;2930:1;2916:16;;:2;:16;;;2912:179;;;2948:45;2985:7;2948:36;:45::i;:::-;2912:179;;;3020:4;3014:10;;:2;:10;;;3010:81;;3040:40;3068:2;3072:7;3040:27;:40::i;:::-;3010:81;2912:179;2555:542;;;:::o;8202:247:3:-;8297:18;8303:2;8307:7;8297:5;:18::i;:::-;8333:54;8364:1;8368:2;8372:7;8381:5;8333:22;:54::i;:::-;8325:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;8202:247;;;:::o;11397:824::-;11517:4;11541:15;:2;:13;;;:15::i;:::-;11537:678;;;11592:2;11576:36;;;11613:12;:10;:12::i;:::-;11627:4;11633:7;11642:5;11576:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;11572:591;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11836:1;11819:6;:13;:18;11815:334;;;11861:60;;;;;;;;;;:::i;:::-;;;;;;;;11815:334;12101:6;12095:13;12086:6;12082:2;12078:15;12071:38;11572:591;11708:45;;;11698:55;;;:6;:55;;;;11691:62;;;;;11537:678;12200:4;12193:11;;11397:824;;;;;;;:::o;12817:93::-;;;;:::o;3803:161:4:-;3906:10;:17;;;;3879:15;:24;3895:7;3879:24;;;;;;;;;;;:44;;;;3933:10;3949:7;3933:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3803:161;:::o;4581:970::-;4843:22;4893:1;4868:22;4885:4;4868:16;:22::i;:::-;:26;;;;:::i;:::-;4843:51;;4904:18;4925:17;:26;4943:7;4925:26;;;;;;;;;;;;4904:47;;5069:14;5055:10;:28;5051:323;;5099:19;5121:12;:18;5134:4;5121:18;;;;;;;;;;;;;;;:34;5140:14;5121:34;;;;;;;;;;;;5099:56;;5203:11;5170:12;:18;5183:4;5170:18;;;;;;;;;;;;;;;:30;5189:10;5170:30;;;;;;;;;;;:44;;;;5319:10;5286:17;:30;5304:11;5286:30;;;;;;;;;;;:43;;;;5051:323;;5467:17;:26;5485:7;5467:26;;;;;;;;;;;5460:33;;;5510:12;:18;5523:4;5510:18;;;;;;;;;;;;;;;:34;5529:14;5510:34;;;;;;;;;;;5503:41;;;4581:970;;;;:::o;5839:1061::-;6088:22;6133:1;6113:10;:17;;;;:21;;;;:::i;:::-;6088:46;;6144:18;6165:15;:24;6181:7;6165:24;;;;;;;;;;;;6144:45;;6511:19;6533:10;6544:14;6533:26;;;;;;;;;;;;;;;;;;;;;;;;6511:48;;6595:11;6570:10;6581;6570:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;6705:10;6674:15;:28;6690:11;6674:28;;;;;;;;;;;:41;;;;6843:15;:24;6859:7;6843:24;;;;;;;;;;;6836:31;;;6877:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5839:1061;;;;:::o;3391:217::-;3475:14;3492:20;3509:2;3492:16;:20::i;:::-;3475:37;;3549:7;3522:12;:16;3535:2;3522:16;;;;;;;;;;;;;;;:24;3539:6;3522:24;;;;;;;;;;;:34;;;;3595:6;3566:17;:26;3584:7;3566:26;;;;;;;;;;;:35;;;;3391:217;;;:::o;8771:372:3:-;8864:1;8850:16;;:2;:16;;;;8842:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;8922:16;8930:7;8922;:16::i;:::-;8921:17;8913:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;8982:45;9011:1;9015:2;9019:7;8982:20;:45::i;:::-;9055:1;9038:9;:13;9048:2;9038:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9085:2;9066:7;:16;9074:7;9066:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9128:7;9124:2;9103:33;;9120:1;9103:33;;;;;;;;;;;;8771:372;;:::o;718:413:0:-;778:4;981:12;1090:7;1078:20;1070:28;;1123:1;1116:4;:8;1109:15;;;718:413;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:622:16:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;652:342::-;;754:64;769:48;810:6;769:48;:::i;:::-;754:64;:::i;:::-;745:73;;841:6;834:5;827:21;879:4;872:5;868:16;917:3;908:6;903:3;899:16;896:25;893:2;;;934:1;931;924:12;893:2;947:41;981:6;976:3;971;947:41;:::i;:::-;735:259;;;;;;:::o;1000:344::-;;1103:65;1118:49;1160:6;1118:49;:::i;:::-;1103:65;:::i;:::-;1094:74;;1191:6;1184:5;1177:21;1229:4;1222:5;1218:16;1267:3;1258:6;1253:3;1249:16;1246:25;1243:2;;;1284:1;1281;1274:12;1243:2;1297:41;1331:6;1326:3;1321;1297:41;:::i;:::-;1084:260;;;;;;:::o;1350:139::-;;1434:6;1421:20;1412:29;;1450:33;1477:5;1450:33;:::i;:::-;1402:87;;;;:::o;1512:303::-;;1632:3;1625:4;1617:6;1613:17;1609:27;1599:2;;1650:1;1647;1640:12;1599:2;1690:6;1677:20;1715:94;1805:3;1797:6;1790:4;1782:6;1778:17;1715:94;:::i;:::-;1706:103;;1589:226;;;;;:::o;1821:133::-;;1902:6;1889:20;1880:29;;1918:30;1942:5;1918:30;:::i;:::-;1870:84;;;;:::o;1960:137::-;;2043:6;2030:20;2021:29;;2059:32;2085:5;2059:32;:::i;:::-;2011:86;;;;:::o;2103:141::-;;2190:6;2184:13;2175:22;;2206:32;2232:5;2206:32;:::i;:::-;2165:79;;;;:::o;2263:271::-;;2367:3;2360:4;2352:6;2348:17;2344:27;2334:2;;2385:1;2382;2375:12;2334:2;2425:6;2412:20;2450:78;2524:3;2516:6;2509:4;2501:6;2497:17;2450:78;:::i;:::-;2441:87;;2324:210;;;;;:::o;2554:273::-;;2659:3;2652:4;2644:6;2640:17;2636:27;2626:2;;2677:1;2674;2667:12;2626:2;2717:6;2704:20;2742:79;2817:3;2809:6;2802:4;2794:6;2790:17;2742:79;:::i;:::-;2733:88;;2616:211;;;;;:::o;2833:139::-;;2917:6;2904:20;2895:29;;2933:33;2960:5;2933:33;:::i;:::-;2885:87;;;;:::o;2978:262::-;;3086:2;3074:9;3065:7;3061:23;3057:32;3054:2;;;3102:1;3099;3092:12;3054:2;3145:1;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3116:117;3044:196;;;;:::o;3246:407::-;;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3387:1;3384;3377:12;3339:2;3430:1;3455:53;3500:7;3491:6;3480:9;3476:22;3455:53;:::i;:::-;3445:63;;3401:117;3557:2;3583:53;3628:7;3619:6;3608:9;3604:22;3583:53;:::i;:::-;3573:63;;3528:118;3329:324;;;;;:::o;3659:552::-;;;;3801:2;3789:9;3780:7;3776:23;3772:32;3769:2;;;3817:1;3814;3807:12;3769:2;3860:1;3885:53;3930:7;3921:6;3910:9;3906:22;3885:53;:::i;:::-;3875:63;;3831:117;3987:2;4013:53;4058:7;4049:6;4038:9;4034:22;4013:53;:::i;:::-;4003:63;;3958:118;4115:2;4141:53;4186:7;4177:6;4166:9;4162:22;4141:53;:::i;:::-;4131:63;;4086:118;3759:452;;;;;:::o;4217:809::-;;;;;4385:3;4373:9;4364:7;4360:23;4356:33;4353:2;;;4402:1;4399;4392:12;4353:2;4445:1;4470:53;4515:7;4506:6;4495:9;4491:22;4470:53;:::i;:::-;4460:63;;4416:117;4572:2;4598:53;4643:7;4634:6;4623:9;4619:22;4598:53;:::i;:::-;4588:63;;4543:118;4700:2;4726:53;4771:7;4762:6;4751:9;4747:22;4726:53;:::i;:::-;4716:63;;4671:118;4856:2;4845:9;4841:18;4828:32;4887:18;4879:6;4876:30;4873:2;;;4919:1;4916;4909:12;4873:2;4947:62;5001:7;4992:6;4981:9;4977:22;4947:62;:::i;:::-;4937:72;;4799:220;4343:683;;;;;;;:::o;5032:401::-;;;5154:2;5142:9;5133:7;5129:23;5125:32;5122:2;;;5170:1;5167;5160:12;5122:2;5213:1;5238:53;5283:7;5274:6;5263:9;5259:22;5238:53;:::i;:::-;5228:63;;5184:117;5340:2;5366:50;5408:7;5399:6;5388:9;5384:22;5366:50;:::i;:::-;5356:60;;5311:115;5112:321;;;;;:::o;5439:407::-;;;5564:2;5552:9;5543:7;5539:23;5535:32;5532:2;;;5580:1;5577;5570:12;5532:2;5623:1;5648:53;5693:7;5684:6;5673:9;5669:22;5648:53;:::i;:::-;5638:63;;5594:117;5750:2;5776:53;5821:7;5812:6;5801:9;5797:22;5776:53;:::i;:::-;5766:63;;5721:118;5522:324;;;;;:::o;5852:405::-;;5985:2;5973:9;5964:7;5960:23;5956:32;5953:2;;;6001:1;5998;5991:12;5953:2;6072:1;6061:9;6057:17;6044:31;6102:18;6094:6;6091:30;6088:2;;;6134:1;6131;6124:12;6088:2;6162:78;6232:7;6223:6;6212:9;6208:22;6162:78;:::i;:::-;6152:88;;6015:235;5943:314;;;;:::o;6263:256::-;;6368:2;6356:9;6347:7;6343:23;6339:32;6336:2;;;6384:1;6381;6374:12;6336:2;6427:1;6452:50;6494:7;6485:6;6474:9;6470:22;6452:50;:::i;:::-;6442:60;;6398:114;6326:193;;;;:::o;6525:260::-;;6632:2;6620:9;6611:7;6607:23;6603:32;6600:2;;;6648:1;6645;6638:12;6600:2;6691:1;6716:52;6760:7;6751:6;6740:9;6736:22;6716:52;:::i;:::-;6706:62;;6662:116;6590:195;;;;:::o;6791:282::-;;6909:2;6897:9;6888:7;6884:23;6880:32;6877:2;;;6925:1;6922;6915:12;6877:2;6968:1;6993:63;7048:7;7039:6;7028:9;7024:22;6993:63;:::i;:::-;6983:73;;6939:127;6867:206;;;;:::o;7079:375::-;;7197:2;7185:9;7176:7;7172:23;7168:32;7165:2;;;7213:1;7210;7203:12;7165:2;7284:1;7273:9;7269:17;7256:31;7314:18;7306:6;7303:30;7300:2;;;7346:1;7343;7336:12;7300:2;7374:63;7429:7;7420:6;7409:9;7405:22;7374:63;:::i;:::-;7364:73;;7227:220;7155:299;;;;:::o;7460:262::-;;7568:2;7556:9;7547:7;7543:23;7539:32;7536:2;;;7584:1;7581;7574:12;7536:2;7627:1;7652:53;7697:7;7688:6;7677:9;7673:22;7652:53;:::i;:::-;7642:63;;7598:117;7526:196;;;;:::o;7728:179::-;;7818:46;7860:3;7852:6;7818:46;:::i;:::-;7896:4;7891:3;7887:14;7873:28;;7808:99;;;;:::o;7913:118::-;8000:24;8018:5;8000:24;:::i;:::-;7995:3;7988:37;7978:53;;:::o;8067:732::-;;8215:54;8263:5;8215:54;:::i;:::-;8285:86;8364:6;8359:3;8285:86;:::i;:::-;8278:93;;8395:56;8445:5;8395:56;:::i;:::-;8474:7;8505:1;8490:284;8515:6;8512:1;8509:13;8490:284;;;8591:6;8585:13;8618:63;8677:3;8662:13;8618:63;:::i;:::-;8611:70;;8704:60;8757:6;8704:60;:::i;:::-;8694:70;;8550:224;8537:1;8534;8530:9;8525:14;;8490:284;;;8494:14;8790:3;8783:10;;8191:608;;;;;;;:::o;8805:109::-;8886:21;8901:5;8886:21;:::i;:::-;8881:3;8874:34;8864:50;;:::o;8920:360::-;;9034:38;9066:5;9034:38;:::i;:::-;9088:70;9151:6;9146:3;9088:70;:::i;:::-;9081:77;;9167:52;9212:6;9207:3;9200:4;9193:5;9189:16;9167:52;:::i;:::-;9244:29;9266:6;9244:29;:::i;:::-;9239:3;9235:39;9228:46;;9010:270;;;;;:::o;9286:364::-;;9402:39;9435:5;9402:39;:::i;:::-;9457:71;9521:6;9516:3;9457:71;:::i;:::-;9450:78;;9537:52;9582:6;9577:3;9570:4;9563:5;9559:16;9537:52;:::i;:::-;9614:29;9636:6;9614:29;:::i;:::-;9609:3;9605:39;9598:46;;9378:272;;;;;:::o;9656:377::-;;9790:39;9823:5;9790:39;:::i;:::-;9845:89;9927:6;9922:3;9845:89;:::i;:::-;9838:96;;9943:52;9988:6;9983:3;9976:4;9969:5;9965:16;9943:52;:::i;:::-;10020:6;10015:3;10011:16;10004:23;;9766:267;;;;;:::o;10039:329::-;;10202:67;10266:2;10261:3;10202:67;:::i;:::-;10195:74;;10299:33;10295:1;10290:3;10286:11;10279:54;10359:2;10354:3;10350:12;10343:19;;10185:183;;;:::o;10374:375::-;;10537:67;10601:2;10596:3;10537:67;:::i;:::-;10530:74;;10634:34;10630:1;10625:3;10621:11;10614:55;10700:13;10695:2;10690:3;10686:12;10679:35;10740:2;10735:3;10731:12;10724:19;;10520:229;;;:::o;10755:382::-;;10918:67;10982:2;10977:3;10918:67;:::i;:::-;10911:74;;11015:34;11011:1;11006:3;11002:11;10995:55;11081:20;11076:2;11071:3;11067:12;11060:42;11128:2;11123:3;11119:12;11112:19;;10901:236;;;:::o;11143:370::-;;11306:67;11370:2;11365:3;11306:67;:::i;:::-;11299:74;;11403:34;11399:1;11394:3;11390:11;11383:55;11469:8;11464:2;11459:3;11455:12;11448:30;11504:2;11499:3;11495:12;11488:19;;11289:224;;;:::o;11519:326::-;;11682:67;11746:2;11741:3;11682:67;:::i;:::-;11675:74;;11779:30;11775:1;11770:3;11766:11;11759:51;11836:2;11831:3;11827:12;11820:19;;11665:180;;;:::o;11851:368::-;;12014:67;12078:2;12073:3;12014:67;:::i;:::-;12007:74;;12111:34;12107:1;12102:3;12098:11;12091:55;12177:6;12172:2;12167:3;12163:12;12156:28;12210:2;12205:3;12201:12;12194:19;;11997:222;;;:::o;12225:323::-;;12388:67;12452:2;12447:3;12388:67;:::i;:::-;12381:74;;12485:27;12481:1;12476:3;12472:11;12465:48;12539:2;12534:3;12530:12;12523:19;;12371:177;;;:::o;12554:329::-;;12717:67;12781:2;12776:3;12717:67;:::i;:::-;12710:74;;12814:33;12810:1;12805:3;12801:11;12794:54;12874:2;12869:3;12865:12;12858:19;;12700:183;;;:::o;12889:376::-;;13052:67;13116:2;13111:3;13052:67;:::i;:::-;13045:74;;13149:34;13145:1;13140:3;13136:11;13129:55;13215:14;13210:2;13205:3;13201:12;13194:36;13256:2;13251:3;13247:12;13240:19;;13035:230;;;:::o;13271:365::-;;13434:67;13498:2;13493:3;13434:67;:::i;:::-;13427:74;;13531:34;13527:1;13522:3;13518:11;13511:55;13597:3;13592:2;13587:3;13583:12;13576:25;13627:2;13622:3;13618:12;13611:19;;13417:219;;;:::o;13642:318::-;;13805:67;13869:2;13864:3;13805:67;:::i;:::-;13798:74;;13902:22;13898:1;13893:3;13889:11;13882:43;13951:2;13946:3;13942:12;13935:19;;13788:172;;;:::o;13966:388::-;;14129:67;14193:2;14188:3;14129:67;:::i;:::-;14122:74;;14226:34;14222:1;14217:3;14213:11;14206:55;14292:26;14287:2;14282:3;14278:12;14271:48;14345:2;14340:3;14336:12;14329:19;;14112:242;;;:::o;14360:374::-;;14523:67;14587:2;14582:3;14523:67;:::i;:::-;14516:74;;14620:34;14616:1;14611:3;14607:11;14600:55;14686:12;14681:2;14676:3;14672:12;14665:34;14725:2;14720:3;14716:12;14709:19;;14506:228;;;:::o;14740:373::-;;14903:67;14967:2;14962:3;14903:67;:::i;:::-;14896:74;;15000:34;14996:1;14991:3;14987:11;14980:55;15066:11;15061:2;15056:3;15052:12;15045:33;15104:2;15099:3;15095:12;15088:19;;14886:227;;;:::o;15119:323::-;;15282:67;15346:2;15341:3;15282:67;:::i;:::-;15275:74;;15379:27;15375:1;15370:3;15366:11;15359:48;15433:2;15428:3;15424:12;15417:19;;15265:177;;;:::o;15448:330::-;;15611:67;15675:2;15670:3;15611:67;:::i;:::-;15604:74;;15708:34;15704:1;15699:3;15695:11;15688:55;15769:2;15764:3;15760:12;15753:19;;15594:184;;;:::o;15784:330::-;;15947:67;16011:2;16006:3;15947:67;:::i;:::-;15940:74;;16044:34;16040:1;16035:3;16031:11;16024:55;16105:2;16100:3;16096:12;16089:19;;15930:184;;;:::o;16120:376::-;;16283:67;16347:2;16342:3;16283:67;:::i;:::-;16276:74;;16380:34;16376:1;16371:3;16367:11;16360:55;16446:14;16441:2;16436:3;16432:12;16425:36;16487:2;16482:3;16478:12;16471:19;;16266:230;;;:::o;16502:330::-;;16665:67;16729:2;16724:3;16665:67;:::i;:::-;16658:74;;16762:34;16758:1;16753:3;16749:11;16742:55;16823:2;16818:3;16814:12;16807:19;;16648:184;;;:::o;16838:373::-;;17001:67;17065:2;17060:3;17001:67;:::i;:::-;16994:74;;17098:34;17094:1;17089:3;17085:11;17078:55;17164:11;17159:2;17154:3;17150:12;17143:33;17202:2;17197:3;17193:12;17186:19;;16984:227;;;:::o;17217:379::-;;17380:67;17444:2;17439:3;17380:67;:::i;:::-;17373:74;;17477:34;17473:1;17468:3;17464:11;17457:55;17543:17;17538:2;17533:3;17529:12;17522:39;17587:2;17582:3;17578:12;17571:19;;17363:233;;;:::o;17602:320::-;;17765:67;17829:2;17824:3;17765:67;:::i;:::-;17758:74;;17862:24;17858:1;17853:3;17849:11;17842:45;17913:2;17908:3;17904:12;17897:19;;17748:174;;;:::o;17928:365::-;;18091:67;18155:2;18150:3;18091:67;:::i;:::-;18084:74;;18188:34;18184:1;18179:3;18175:11;18168:55;18254:3;18249:2;18244:3;18240:12;18233:25;18284:2;18279:3;18275:12;18268:19;;18074:219;;;:::o;18299:297::-;;18479:83;18560:1;18555:3;18479:83;:::i;:::-;18472:90;;18588:1;18583:3;18579:11;18572:18;;18462:134;;;:::o;18602:381::-;;18765:67;18829:2;18824:3;18765:67;:::i;:::-;18758:74;;18862:34;18858:1;18853:3;18849:11;18842:55;18928:19;18923:2;18918:3;18914:12;18907:41;18974:2;18969:3;18965:12;18958:19;;18748:235;;;:::o;18989:376::-;;19152:67;19216:2;19211:3;19152:67;:::i;:::-;19145:74;;19249:34;19245:1;19240:3;19236:11;19229:55;19315:14;19310:2;19305:3;19301:12;19294:36;19356:2;19351:3;19347:12;19340:19;;19135:230;;;:::o;19371:325::-;;19534:67;19598:2;19593:3;19534:67;:::i;:::-;19527:74;;19631:29;19627:1;19622:3;19618:11;19611:50;19687:2;19682:3;19678:12;19671:19;;19517:179;;;:::o;19770:347::-;19927:4;19922:3;19918:14;20018:4;20011:5;20007:16;20001:23;20037:63;20094:4;20089:3;20085:14;20071:12;20037:63;:::i;:::-;19942:168;19896:221;;;:::o;20123:108::-;20200:24;20218:5;20200:24;:::i;:::-;20195:3;20188:37;20178:53;;:::o;20237:118::-;20324:24;20342:5;20324:24;:::i;:::-;20319:3;20312:37;20302:53;;:::o;20361:435::-;;20563:95;20654:3;20645:6;20563:95;:::i;:::-;20556:102;;20675:95;20766:3;20757:6;20675:95;:::i;:::-;20668:102;;20787:3;20780:10;;20545:251;;;;;:::o;20802:379::-;;21008:147;21151:3;21008:147;:::i;:::-;21001:154;;21172:3;21165:10;;20990:191;;;:::o;21187:222::-;;21318:2;21307:9;21303:18;21295:26;;21331:71;21399:1;21388:9;21384:17;21375:6;21331:71;:::i;:::-;21285:124;;;;:::o;21415:640::-;;21648:3;21637:9;21633:19;21625:27;;21662:71;21730:1;21719:9;21715:17;21706:6;21662:71;:::i;:::-;21743:72;21811:2;21800:9;21796:18;21787:6;21743:72;:::i;:::-;21825;21893:2;21882:9;21878:18;21869:6;21825:72;:::i;:::-;21944:9;21938:4;21934:20;21929:2;21918:9;21914:18;21907:48;21972:76;22043:4;22034:6;21972:76;:::i;:::-;21964:84;;21615:440;;;;;;;:::o;22061:373::-;;22242:2;22231:9;22227:18;22219:26;;22291:9;22285:4;22281:20;22277:1;22266:9;22262:17;22255:47;22319:108;22422:4;22413:6;22319:108;:::i;:::-;22311:116;;22209:225;;;;:::o;22440:210::-;;22565:2;22554:9;22550:18;22542:26;;22578:65;22640:1;22629:9;22625:17;22616:6;22578:65;:::i;:::-;22532:118;;;;:::o;22656:313::-;;22807:2;22796:9;22792:18;22784:26;;22856:9;22850:4;22846:20;22842:1;22831:9;22827:17;22820:47;22884:78;22957:4;22948:6;22884:78;:::i;:::-;22876:86;;22774:195;;;;:::o;22975:419::-;;23179:2;23168:9;23164:18;23156:26;;23228:9;23222:4;23218:20;23214:1;23203:9;23199:17;23192:47;23256:131;23382:4;23256:131;:::i;:::-;23248:139;;23146:248;;;:::o;23400:419::-;;23604:2;23593:9;23589:18;23581:26;;23653:9;23647:4;23643:20;23639:1;23628:9;23624:17;23617:47;23681:131;23807:4;23681:131;:::i;:::-;23673:139;;23571:248;;;:::o;23825:419::-;;24029:2;24018:9;24014:18;24006:26;;24078:9;24072:4;24068:20;24064:1;24053:9;24049:17;24042:47;24106:131;24232:4;24106:131;:::i;:::-;24098:139;;23996:248;;;:::o;24250:419::-;;24454:2;24443:9;24439:18;24431:26;;24503:9;24497:4;24493:20;24489:1;24478:9;24474:17;24467:47;24531:131;24657:4;24531:131;:::i;:::-;24523:139;;24421:248;;;:::o;24675:419::-;;24879:2;24868:9;24864:18;24856:26;;24928:9;24922:4;24918:20;24914:1;24903:9;24899:17;24892:47;24956:131;25082:4;24956:131;:::i;:::-;24948:139;;24846:248;;;:::o;25100:419::-;;25304:2;25293:9;25289:18;25281:26;;25353:9;25347:4;25343:20;25339:1;25328:9;25324:17;25317:47;25381:131;25507:4;25381:131;:::i;:::-;25373:139;;25271:248;;;:::o;25525:419::-;;25729:2;25718:9;25714:18;25706:26;;25778:9;25772:4;25768:20;25764:1;25753:9;25749:17;25742:47;25806:131;25932:4;25806:131;:::i;:::-;25798:139;;25696:248;;;:::o;25950:419::-;;26154:2;26143:9;26139:18;26131:26;;26203:9;26197:4;26193:20;26189:1;26178:9;26174:17;26167:47;26231:131;26357:4;26231:131;:::i;:::-;26223:139;;26121:248;;;:::o;26375:419::-;;26579:2;26568:9;26564:18;26556:26;;26628:9;26622:4;26618:20;26614:1;26603:9;26599:17;26592:47;26656:131;26782:4;26656:131;:::i;:::-;26648:139;;26546:248;;;:::o;26800:419::-;;27004:2;26993:9;26989:18;26981:26;;27053:9;27047:4;27043:20;27039:1;27028:9;27024:17;27017:47;27081:131;27207:4;27081:131;:::i;:::-;27073:139;;26971:248;;;:::o;27225:419::-;;27429:2;27418:9;27414:18;27406:26;;27478:9;27472:4;27468:20;27464:1;27453:9;27449:17;27442:47;27506:131;27632:4;27506:131;:::i;:::-;27498:139;;27396:248;;;:::o;27650:419::-;;27854:2;27843:9;27839:18;27831:26;;27903:9;27897:4;27893:20;27889:1;27878:9;27874:17;27867:47;27931:131;28057:4;27931:131;:::i;:::-;27923:139;;27821:248;;;:::o;28075:419::-;;28279:2;28268:9;28264:18;28256:26;;28328:9;28322:4;28318:20;28314:1;28303:9;28299:17;28292:47;28356:131;28482:4;28356:131;:::i;:::-;28348:139;;28246:248;;;:::o;28500:419::-;;28704:2;28693:9;28689:18;28681:26;;28753:9;28747:4;28743:20;28739:1;28728:9;28724:17;28717:47;28781:131;28907:4;28781:131;:::i;:::-;28773:139;;28671:248;;;:::o;28925:419::-;;29129:2;29118:9;29114:18;29106:26;;29178:9;29172:4;29168:20;29164:1;29153:9;29149:17;29142:47;29206:131;29332:4;29206:131;:::i;:::-;29198:139;;29096:248;;;:::o;29350:419::-;;29554:2;29543:9;29539:18;29531:26;;29603:9;29597:4;29593:20;29589:1;29578:9;29574:17;29567:47;29631:131;29757:4;29631:131;:::i;:::-;29623:139;;29521:248;;;:::o;29775:419::-;;29979:2;29968:9;29964:18;29956:26;;30028:9;30022:4;30018:20;30014:1;30003:9;29999:17;29992:47;30056:131;30182:4;30056:131;:::i;:::-;30048:139;;29946:248;;;:::o;30200:419::-;;30404:2;30393:9;30389:18;30381:26;;30453:9;30447:4;30443:20;30439:1;30428:9;30424:17;30417:47;30481:131;30607:4;30481:131;:::i;:::-;30473:139;;30371:248;;;:::o;30625:419::-;;30829:2;30818:9;30814:18;30806:26;;30878:9;30872:4;30868:20;30864:1;30853:9;30849:17;30842:47;30906:131;31032:4;30906:131;:::i;:::-;30898:139;;30796:248;;;:::o;31050:419::-;;31254:2;31243:9;31239:18;31231:26;;31303:9;31297:4;31293:20;31289:1;31278:9;31274:17;31267:47;31331:131;31457:4;31331:131;:::i;:::-;31323:139;;31221:248;;;:::o;31475:419::-;;31679:2;31668:9;31664:18;31656:26;;31728:9;31722:4;31718:20;31714:1;31703:9;31699:17;31692:47;31756:131;31882:4;31756:131;:::i;:::-;31748:139;;31646:248;;;:::o;31900:419::-;;32104:2;32093:9;32089:18;32081:26;;32153:9;32147:4;32143:20;32139:1;32128:9;32124:17;32117:47;32181:131;32307:4;32181:131;:::i;:::-;32173:139;;32071:248;;;:::o;32325:419::-;;32529:2;32518:9;32514:18;32506:26;;32578:9;32572:4;32568:20;32564:1;32553:9;32549:17;32542:47;32606:131;32732:4;32606:131;:::i;:::-;32598:139;;32496:248;;;:::o;32750:419::-;;32954:2;32943:9;32939:18;32931:26;;33003:9;32997:4;32993:20;32989:1;32978:9;32974:17;32967:47;33031:131;33157:4;33031:131;:::i;:::-;33023:139;;32921:248;;;:::o;33175:419::-;;33379:2;33368:9;33364:18;33356:26;;33428:9;33422:4;33418:20;33414:1;33403:9;33399:17;33392:47;33456:131;33582:4;33456:131;:::i;:::-;33448:139;;33346:248;;;:::o;33600:419::-;;33804:2;33793:9;33789:18;33781:26;;33853:9;33847:4;33843:20;33839:1;33828:9;33824:17;33817:47;33881:131;34007:4;33881:131;:::i;:::-;33873:139;;33771:248;;;:::o;34025:342::-;;34216:2;34205:9;34201:18;34193:26;;34229:131;34357:1;34346:9;34342:17;34333:6;34229:131;:::i;:::-;34183:184;;;;:::o;34373:222::-;;34504:2;34493:9;34489:18;34481:26;;34517:71;34585:1;34574:9;34570:17;34561:6;34517:71;:::i;:::-;34471:124;;;;:::o;34601:442::-;;34788:2;34777:9;34773:18;34765:26;;34801:71;34869:1;34858:9;34854:17;34845:6;34801:71;:::i;:::-;34882:72;34950:2;34939:9;34935:18;34926:6;34882:72;:::i;:::-;34964;35032:2;35021:9;35017:18;35008:6;34964:72;:::i;:::-;34755:288;;;;;;:::o;35049:283::-;;35115:2;35109:9;35099:19;;35157:4;35149:6;35145:17;35264:6;35252:10;35249:22;35228:18;35216:10;35213:34;35210:62;35207:2;;;35275:18;;:::i;:::-;35207:2;35315:10;35311:2;35304:22;35089:243;;;;:::o;35338:311::-;;35505:18;35497:6;35494:30;35491:2;;;35527:18;;:::i;:::-;35491:2;35577:4;35569:6;35565:17;35557:25;;35637:4;35631;35627:15;35619:23;;35420:229;;;:::o;35655:331::-;;35806:18;35798:6;35795:30;35792:2;;;35828:18;;:::i;:::-;35792:2;35913:4;35909:9;35902:4;35894:6;35890:17;35886:33;35878:41;;35974:4;35968;35964:15;35956:23;;35721:265;;;:::o;35992:332::-;;36144:18;36136:6;36133:30;36130:2;;;36166:18;;:::i;:::-;36130:2;36251:4;36247:9;36240:4;36232:6;36228:17;36224:33;36216:41;;36312:4;36306;36302:15;36294:23;;36059:265;;;:::o;36330:132::-;;36420:3;36412:11;;36450:4;36445:3;36441:14;36433:22;;36402:60;;;:::o;36468:114::-;;36569:5;36563:12;36553:22;;36542:40;;;:::o;36588:98::-;;36673:5;36667:12;36657:22;;36646:40;;;:::o;36692:99::-;;36778:5;36772:12;36762:22;;36751:40;;;:::o;36797:113::-;;36899:4;36894:3;36890:14;36882:22;;36872:38;;;:::o;36916:184::-;;37049:6;37044:3;37037:19;37089:4;37084:3;37080:14;37065:29;;37027:73;;;;:::o;37106:168::-;;37223:6;37218:3;37211:19;37263:4;37258:3;37254:14;37239:29;;37201:73;;;;:::o;37280:147::-;;37418:3;37403:18;;37393:34;;;;:::o;37433:169::-;;37551:6;37546:3;37539:19;37591:4;37586:3;37582:14;37567:29;;37529:73;;;;:::o;37608:148::-;;37747:3;37732:18;;37722:34;;;;:::o;37762:305::-;;37821:20;37839:1;37821:20;:::i;:::-;37816:25;;37855:20;37873:1;37855:20;:::i;:::-;37850:25;;38009:1;37941:66;37937:74;37934:1;37931:81;37928:2;;;38015:18;;:::i;:::-;37928:2;38059:1;38056;38052:9;38045:16;;37806:261;;;;:::o;38073:185::-;;38130:20;38148:1;38130:20;:::i;:::-;38125:25;;38164:20;38182:1;38164:20;:::i;:::-;38159:25;;38203:1;38193:2;;38208:18;;:::i;:::-;38193:2;38250:1;38247;38243:9;38238:14;;38115:143;;;;:::o;38264:348::-;;38327:20;38345:1;38327:20;:::i;:::-;38322:25;;38361:20;38379:1;38361:20;:::i;:::-;38356:25;;38549:1;38481:66;38477:74;38474:1;38471:81;38466:1;38459:9;38452:17;38448:105;38445:2;;;38556:18;;:::i;:::-;38445:2;38604:1;38601;38597:9;38586:20;;38312:300;;;;:::o;38618:191::-;;38678:20;38696:1;38678:20;:::i;:::-;38673:25;;38712:20;38730:1;38712:20;:::i;:::-;38707:25;;38751:1;38748;38745:8;38742:2;;;38756:18;;:::i;:::-;38742:2;38801:1;38798;38794:9;38786:17;;38663:146;;;;:::o;38815:96::-;;38881:24;38899:5;38881:24;:::i;:::-;38870:35;;38860:51;;;:::o;38917:90::-;;38994:5;38987:13;38980:21;38969:32;;38959:48;;;:::o;39013:149::-;;39089:66;39082:5;39078:78;39067:89;;39057:105;;;:::o;39168:126::-;;39245:42;39238:5;39234:54;39223:65;;39213:81;;;:::o;39300:77::-;;39366:5;39355:16;;39345:32;;;:::o;39383:154::-;39467:6;39462:3;39457;39444:30;39529:1;39520:6;39515:3;39511:16;39504:27;39434:103;;;:::o;39543:307::-;39611:1;39621:113;39635:6;39632:1;39629:13;39621:113;;;39720:1;39715:3;39711:11;39705:18;39701:1;39696:3;39692:11;39685:39;39657:2;39654:1;39650:10;39645:15;;39621:113;;;39752:6;39749:1;39746:13;39743:2;;;39832:1;39823:6;39818:3;39814:16;39807:27;39743:2;39592:258;;;;:::o;39856:320::-;;39937:1;39931:4;39927:12;39917:22;;39984:1;39978:4;39974:12;40005:18;39995:2;;40061:4;40053:6;40049:17;40039:27;;39995:2;40123;40115:6;40112:14;40092:18;40089:38;40086:2;;;40142:18;;:::i;:::-;40086:2;39907:269;;;;:::o;40182:233::-;;40244:24;40262:5;40244:24;:::i;:::-;40235:33;;40290:66;40283:5;40280:77;40277:2;;;40360:18;;:::i;:::-;40277:2;40407:1;40400:5;40396:13;40389:20;;40225:190;;;:::o;40421:176::-;;40470:20;40488:1;40470:20;:::i;:::-;40465:25;;40504:20;40522:1;40504:20;:::i;:::-;40499:25;;40543:1;40533:2;;40548:18;;:::i;:::-;40533:2;40589:1;40586;40582:9;40577:14;;40455:142;;;;:::o;40603:180::-;40651:77;40648:1;40641:88;40748:4;40745:1;40738:15;40772:4;40769:1;40762:15;40789:180;40837:77;40834:1;40827:88;40934:4;40931:1;40924:15;40958:4;40955:1;40948:15;40975:180;41023:77;41020:1;41013:88;41120:4;41117:1;41110:15;41144:4;41141:1;41134:15;41161:180;41209:77;41206:1;41199:88;41306:4;41303:1;41296:15;41330:4;41327:1;41320:15;41347:102;;41439:2;41435:7;41430:2;41423:5;41419:14;41415:28;41405:38;;41395:54;;;:::o;41455:122::-;41528:24;41546:5;41528:24;:::i;:::-;41521:5;41518:35;41508:2;;41567:1;41564;41557:12;41508:2;41498:79;:::o;41583:116::-;41653:21;41668:5;41653:21;:::i;:::-;41646:5;41643:32;41633:2;;41689:1;41686;41679:12;41633:2;41623:76;:::o;41705:120::-;41777:23;41794:5;41777:23;:::i;:::-;41770:5;41767:34;41757:2;;41815:1;41812;41805:12;41757:2;41747:78;:::o;41831:122::-;41904:24;41922:5;41904:24;:::i;:::-;41897:5;41894:35;41884:2;;41943:1;41940;41933:12;41884:2;41874:79;:::o

Swarm Source

ipfs://f243edb1213144c97a986876bb0a2e2c1cae54582168e6912d504502e99cef25
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.