ETH Price: $3,091.26 (-0.38%)
Gas: 2 Gwei

Token

FrankiesMansion (FRANKIE)
 

Overview

Max Total Supply

8,888 FRANKIE

Holders

1,250

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
themissnguyen.eth
Balance
1 FRANKIE
0xe40dcd3e8587c72cf741293c55d0ecb1fca5a852
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Frankie and The Haunted Mansion is a collection of 8,888 randomly generated Frankies stitched with more than +200 hand drawn traits.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FrankiesMansion

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: FrankiesMansion.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 FrankiesMansion is ERC721Enumerable, Ownable  {

    using SafeMath for uint256;

    // Token detail
    struct FrankieDetail {
        uint256 creation;
    }

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

    // Token Detail
    mapping(uint256 => FrankieDetail) private _frankieDetails;

    // 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 = 8888;

    // Current price.
    uint256 public CURRENT_PRICE = 25000000000000000;

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

    // Base URI
    string private baseURI;

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

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

        return _frankieDetails[_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 {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    /**
     * Reserve tokens
     */
    function reserveTokens(uint256 qty) public onlyOwner {
        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);
                _frankieDetails[tokenId] = FrankieDetail(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);
                _frankieDetails[tokenId] = FrankieDetail(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);
                _frankieDetails[tokenId] = FrankieDetail(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":"getFrankieDetail","outputs":[{"components":[{"internalType":"uint256","name":"creation","type":"uint256"}],"internalType":"struct FrankiesMansion.FrankieDetail","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":"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"}]

608060405260405180602001604052806000815250600c90805190602001906200002b9291906200026e565b506014600d556122b8600e556658d15e17628000600f556001601060006101000a81548160ff0219169083151502179055503480156200006a57600080fd5b5060405162004fce38038062004fce833981810160405281019062000090919062000390565b82828160009080519060200190620000aa9291906200026e565b508060019080519060200190620000c39291906200026e565b5050506000620000d86200019160201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000188816200019960201b60201c565b505050620005d7565b600033905090565b620001a96200019160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620001cf6200024460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000228576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021f9062000473565b60405180910390fd5b8060119080519060200190620002409291906200026e565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200027c9062000543565b90600052602060002090601f016020900481019282620002a05760008555620002ec565b82601f10620002bb57805160ff1916838001178555620002ec565b82800160010185558215620002ec579182015b82811115620002eb578251825591602001919060010190620002ce565b5b509050620002fb9190620002ff565b5090565b5b808211156200031a57600081600090555060010162000300565b5090565b6000620003356200032f84620004c9565b62000495565b9050828152602081018484840111156200034e57600080fd5b6200035b8482856200050d565b509392505050565b600082601f8301126200037557600080fd5b8151620003878482602086016200031e565b91505092915050565b600080600060608486031215620003a657600080fd5b600084015167ffffffffffffffff811115620003c157600080fd5b620003cf8682870162000363565b935050602084015167ffffffffffffffff811115620003ed57600080fd5b620003fb8682870162000363565b925050604084015167ffffffffffffffff8111156200041957600080fd5b620004278682870162000363565b9150509250925092565b600062000440602083620004fc565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600060208201905081810360008301526200048e8162000431565b9050919050565b6000604051905081810181811067ffffffffffffffff82111715620004bf57620004be620005a8565b5b8060405250919050565b600067ffffffffffffffff821115620004e757620004e6620005a8565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60005b838110156200052d57808201518184015260208101905062000510565b838111156200053d576000848401525b50505050565b600060028204905060018216806200055c57607f821691505b6020821081141562000573576200057262000579565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6149e780620005e76000396000f3fe60806040526004361061020f5760003560e01c80636373a6b111610118578063a22cb465116100a0578063d031370b1161006f578063d031370b1461079c578063e985e9c5146107c5578063eb8d244414610802578063f2fde38b1461082d578063f47c84c5146108565761020f565b8063a22cb465146106e4578063b88d4fde1461070d578063c4e3709514610736578063c87b56dd1461075f5761020f565b8063715018a6116100e7578063715018a61461061e5780638462151c146106355780638da5cb5b1461067257806395d89b411461069d578063a0712d68146106c85761020f565b80636373a6b11461056257806370a082311461058d57806371189742146105ca5780637146bd08146105f35761020f565b806323b872dd1161019b57806342842e0e1161016a57806342842e0e1461046b5780634b369a61146104945780634f6ccce7146104bf57806355f804b3146104fc5780636352211e146105255761020f565b806323b872dd146103c55780632f745c59146103ee5780633ccfd60b1461042b5780633fa40f94146104425761020f565b806310969523116101e257806310969523146102e257806311e776fe1461030b57806318160ddd1461033457806318b200711461035f57806321bb2c87146103885761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b6004803603810190610236919061367a565b610881565b604051610248919061414e565b60405180910390f35b34801561025d57600080fd5b506102666108fb565b6040516102739190614169565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061370d565b61098d565b6040516102b091906140c5565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db91906135d4565b610a12565b005b3480156102ee57600080fd5b50610309600480360381019061030491906136cc565b610b2a565b005b34801561031757600080fd5b50610332600480360381019061032d919061370d565b610bc0565b005b34801561034057600080fd5b50610349610c46565b6040516103569190614486565b60405180910390f35b34801561036b57600080fd5b506103866004803603810190610381919061370d565b610c53565b005b34801561039457600080fd5b506103af60048036038101906103aa919061370d565b610cd9565b6040516103bc919061446b565b60405180910390f35b3480156103d157600080fd5b506103ec60048036038101906103e791906134ce565b610d58565b005b3480156103fa57600080fd5b50610415600480360381019061041091906135d4565b610db8565b6040516104229190614486565b60405180910390f35b34801561043757600080fd5b50610440610e5d565b005b34801561044e57600080fd5b5061046960048036038101906104649190613610565b610f28565b005b34801561047757600080fd5b50610492600480360381019061048d91906134ce565b61114d565b005b3480156104a057600080fd5b506104a961116d565b6040516104b69190614486565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e1919061370d565b611173565b6040516104f39190614486565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e91906136cc565b61120a565b005b34801561053157600080fd5b5061054c6004803603810190610547919061370d565b6112a0565b60405161055991906140c5565b60405180910390f35b34801561056e57600080fd5b50610577611352565b6040516105849190614169565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190613469565b6113e0565b6040516105c19190614486565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec919061370d565b611498565b005b3480156105ff57600080fd5b5061060861151e565b6040516106159190614486565b60405180910390f35b34801561062a57600080fd5b50610633611524565b005b34801561064157600080fd5b5061065c60048036038101906106579190613469565b611661565b604051610669919061412c565b60405180910390f35b34801561067e57600080fd5b5061068761175b565b60405161069491906140c5565b60405180910390f35b3480156106a957600080fd5b506106b2611785565b6040516106bf9190614169565b60405180910390f35b6106e260048036038101906106dd919061370d565b611817565b005b3480156106f057600080fd5b5061070b60048036038101906107069190613598565b611a28565b005b34801561071957600080fd5b50610734600480360381019061072f919061351d565b611ba9565b005b34801561074257600080fd5b5061075d60048036038101906107589190613651565b611c0b565b005b34801561076b57600080fd5b506107866004803603810190610781919061370d565b611ca4565b6040516107939190614169565b60405180910390f35b3480156107a857600080fd5b506107c360048036038101906107be919061370d565b611d4b565b005b3480156107d157600080fd5b506107ec60048036038101906107e79190613492565b611e8f565b6040516107f9919061414e565b60405180910390f35b34801561080e57600080fd5b50610817611f23565b604051610824919061414e565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f9190613469565b611f36565b005b34801561086257600080fd5b5061086b6120e2565b6040516108789190614486565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f457506108f3826120e8565b5b9050919050565b60606000805461090a906147dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610936906147dc565b80156109835780601f1061095857610100808354040283529160200191610983565b820191906000526020600020905b81548152906001019060200180831161096657829003601f168201915b5050505050905090565b6000610998826121ca565b6109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce9061438b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1d826112a0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a859061440b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aad612236565b73ffffffffffffffffffffffffffffffffffffffff161480610adc5750610adb81610ad6612236565b611e8f565b5b610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b12906142cb565b60405180910390fd5b610b25838361223e565b505050565b610b32612236565b73ffffffffffffffffffffffffffffffffffffffff16610b5061175b565b73ffffffffffffffffffffffffffffffffffffffff1614610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d906143ab565b60405180910390fd5b80600c9080519060200190610bbc9291906131e4565b5050565b610bc8612236565b73ffffffffffffffffffffffffffffffffffffffff16610be661175b565b73ffffffffffffffffffffffffffffffffffffffff1614610c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c33906143ab565b60405180910390fd5b80600e8190555050565b6000600880549050905090565b610c5b612236565b73ffffffffffffffffffffffffffffffffffffffff16610c7961175b565b73ffffffffffffffffffffffffffffffffffffffff1614610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc6906143ab565b60405180910390fd5b80600f8190555050565b610ce161326a565b610cea826121ca565b610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d20906142ab565b60405180910390fd5b600b60008381526020019081526020016000206040518060200160405290816000820154815250509050919050565b610d69610d63612236565b826122f7565b610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f9061442b565b60405180910390fd5b610db38383836123d5565b505050565b6000610dc3836113e0565b8210610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb9061418b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e65612236565b73ffffffffffffffffffffffffffffffffffffffff16610e8361175b565b73ffffffffffffffffffffffffffffffffffffffff1614610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed0906143ab565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f24573d6000803e3d6000fd5b5050565b610f30612236565b73ffffffffffffffffffffffffffffffffffffffff16610f4e61175b565b73ffffffffffffffffffffffffffffffffffffffff1614610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b906143ab565b60405180910390fd5b600e54610fc28251610fb4610c46565b61263190919063ffffffff16565b1115611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa9061434b565b60405180910390fd5b6000429050600080600090505b8351811015611147576110346001611026610c46565b61263190919063ffffffff16565b9150600e5482116111345761108984828151811061107b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015183612647565b604051806020016040528084815250600b6000848152602001908152602001600020600082015181600001559050507f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f82858381518110611113577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518560405161112b939291906144a1565b60405180910390a15b808061113f9061480e565b915050611010565b50505050565b61116883838360405180602001604052806000815250611ba9565b505050565b600f5481565b600061117d610c46565b82106111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b59061444b565b60405180910390fd5b600882815481106111f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b611212612236565b73ffffffffffffffffffffffffffffffffffffffff1661123061175b565b73ffffffffffffffffffffffffffffffffffffffff1614611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d906143ab565b60405180910390fd5b806011908051906020019061129c9291906131e4565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611349576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113409061430b565b60405180910390fd5b80915050919050565b600c805461135f906147dc565b80601f016020809104026020016040519081016040528092919081815260200182805461138b906147dc565b80156113d85780601f106113ad576101008083540402835291602001916113d8565b820191906000526020600020905b8154815290600101906020018083116113bb57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611451576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611448906142eb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114a0612236565b73ffffffffffffffffffffffffffffffffffffffff166114be61175b565b73ffffffffffffffffffffffffffffffffffffffff1614611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b906143ab565b60405180910390fd5b80600d8190555050565b600d5481565b61152c612236565b73ffffffffffffffffffffffffffffffffffffffff1661154a61175b565b73ffffffffffffffffffffffffffffffffffffffff16146115a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611597906143ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6060600061166e836113e0565b905060008167ffffffffffffffff8111156116b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156116e05781602001602082028036833780820191505090505b50905060005b82811015611750576116f88582610db8565b828281518110611731577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806117489061480e565b9150506116e6565b508092505050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611794906147dc565b80601f01602080910402602001604051908101604052809291908181526020018280546117c0906147dc565b801561180d5780601f106117e25761010080835404028352916020019161180d565b820191906000526020600020905b8154815290600101906020018083116117f057829003601f168201915b5050505050905090565b601060009054906101000a900460ff16611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185d9061424b565b60405180910390fd5b600d548111156118ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a29061428b565b60405180910390fd5b600e546118c8826118ba610c46565b61263190919063ffffffff16565b1115611909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119009061434b565b60405180910390fd5b3461191f82600f5461266590919063ffffffff16565b1115611960576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119579061432b565b60405180910390fd5b6000429050600080600190505b838111611a225761198f6001611981610c46565b61263190919063ffffffff16565b9150600e548211611a0f576119a43383612647565b604051806020016040528084815250600b6000848152602001908152602001600020600082015181600001559050507f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f823385604051611a06939291906144a1565b60405180910390a15b8080611a1a9061480e565b91505061196d565b50505050565b611a30612236565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a959061422b565b60405180910390fd5b8060056000611aab612236565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b58612236565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b9d919061414e565b60405180910390a35050565b611bba611bb4612236565b836122f7565b611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf09061442b565b60405180910390fd5b611c058484848461267b565b50505050565b611c13612236565b73ffffffffffffffffffffffffffffffffffffffff16611c3161175b565b73ffffffffffffffffffffffffffffffffffffffff1614611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e906143ab565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060611caf826121ca565b611cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce5906143eb565b60405180910390fd5b6000611cf86126d7565b90506000815111611d185760405180602001604052806000815250611d43565b80611d2284612769565b604051602001611d339291906140a1565b6040516020818303038152906040525b915050919050565b611d53612236565b73ffffffffffffffffffffffffffffffffffffffff16611d7161175b565b73ffffffffffffffffffffffffffffffffffffffff1614611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe906143ab565b60405180910390fd5b6000804290506000600190505b838111611e8957611df66001611de8610c46565b61263190919063ffffffff16565b9250600e548311611e7657611e0b3384612647565b604051806020016040528083815250600b6000858152602001908152602001600020600082015181600001559050507f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f833384604051611e6d939291906144a1565b60405180910390a15b8080611e819061480e565b915050611dd4565b50505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b611f3e612236565b73ffffffffffffffffffffffffffffffffffffffff16611f5c61175b565b73ffffffffffffffffffffffffffffffffffffffff1614611fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa9906143ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612022576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612019906141cb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121b357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806121c357506121c282612916565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122b1836112a0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612302826121ca565b612341576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123389061426b565b60405180910390fd5b600061234c836112a0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123bb57508373ffffffffffffffffffffffffffffffffffffffff166123a38461098d565b73ffffffffffffffffffffffffffffffffffffffff16145b806123cc57506123cb8185611e8f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123f5826112a0565b73ffffffffffffffffffffffffffffffffffffffff161461244b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612442906143cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b29061420b565b60405180910390fd5b6124c6838383612980565b6124d160008261223e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461252191906146f2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125789190614611565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000818361263f9190614611565b905092915050565b612661828260405180602001604052806000815250612a94565b5050565b600081836126739190614698565b905092915050565b6126868484846123d5565b61269284848484612aef565b6126d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c8906141ab565b60405180910390fd5b50505050565b6060601180546126e6906147dc565b80601f0160208091040260200160405190810160405280929190818152602001828054612712906147dc565b801561275f5780601f106127345761010080835404028352916020019161275f565b820191906000526020600020905b81548152906001019060200180831161274257829003601f168201915b5050505050905090565b606060008214156127b1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612911565b600082905060005b600082146127e35780806127cc9061480e565b915050600a826127dc9190614667565b91506127b9565b60008167ffffffffffffffff811115612825577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128575781602001600182028036833780820191505090505b5090505b6000851461290a5760018261287091906146f2565b9150600a8561287f9190614857565b603061288b9190614611565b60f81b8183815181106128c7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129039190614667565b945061285b565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61298b838383612c86565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129ce576129c981612c8b565b612a0d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a0c57612a0b8382612cd4565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a5057612a4b81612e41565b612a8f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a8e57612a8d8282612f84565b5b5b505050565b612a9e8383613003565b612aab6000848484612aef565b612aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae1906141ab565b60405180910390fd5b505050565b6000612b108473ffffffffffffffffffffffffffffffffffffffff166131d1565b15612c79578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b39612236565b8786866040518563ffffffff1660e01b8152600401612b5b94939291906140e0565b602060405180830381600087803b158015612b7557600080fd5b505af1925050508015612ba657506040513d601f19601f82011682018060405250810190612ba391906136a3565b60015b612c29573d8060008114612bd6576040519150601f19603f3d011682016040523d82523d6000602084013e612bdb565b606091505b50600081511415612c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c18906141ab565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c7e565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ce1846113e0565b612ceb91906146f2565b9050600060076000848152602001908152602001600020549050818114612dd0576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e5591906146f2565b9050600060096000848152602001908152602001600020549050600060088381548110612eab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612ef3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f68577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612f8f836113e0565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306a9061436b565b60405180910390fd5b61307c816121ca565b156130bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b3906141eb565b60405180910390fd5b6130c860008383612980565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131189190614611565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546131f0906147dc565b90600052602060002090601f0160209004810192826132125760008555613259565b82601f1061322b57805160ff1916838001178555613259565b82800160010185558215613259579182015b8281111561325857825182559160200191906001019061323d565b5b509050613266919061327d565b5090565b6040518060200160405280600081525090565b5b8082111561329657600081600090555060010161327e565b5090565b60006132ad6132a884614509565b6144d8565b905080838252602082019050828560208602820111156132cc57600080fd5b60005b858110156132fc57816132e28882613382565b8452602084019350602083019250506001810190506132cf565b5050509392505050565b600061331961331484614535565b6144d8565b90508281526020810184848401111561333157600080fd5b61333c84828561479a565b509392505050565b600061335761335284614565565b6144d8565b90508281526020810184848401111561336f57600080fd5b61337a84828561479a565b509392505050565b60008135905061339181614955565b92915050565b600082601f8301126133a857600080fd5b81356133b884826020860161329a565b91505092915050565b6000813590506133d08161496c565b92915050565b6000813590506133e581614983565b92915050565b6000815190506133fa81614983565b92915050565b600082601f83011261341157600080fd5b8135613421848260208601613306565b91505092915050565b600082601f83011261343b57600080fd5b813561344b848260208601613344565b91505092915050565b6000813590506134638161499a565b92915050565b60006020828403121561347b57600080fd5b600061348984828501613382565b91505092915050565b600080604083850312156134a557600080fd5b60006134b385828601613382565b92505060206134c485828601613382565b9150509250929050565b6000806000606084860312156134e357600080fd5b60006134f186828701613382565b935050602061350286828701613382565b925050604061351386828701613454565b9150509250925092565b6000806000806080858703121561353357600080fd5b600061354187828801613382565b945050602061355287828801613382565b935050604061356387828801613454565b925050606085013567ffffffffffffffff81111561358057600080fd5b61358c87828801613400565b91505092959194509250565b600080604083850312156135ab57600080fd5b60006135b985828601613382565b92505060206135ca858286016133c1565b9150509250929050565b600080604083850312156135e757600080fd5b60006135f585828601613382565b925050602061360685828601613454565b9150509250929050565b60006020828403121561362257600080fd5b600082013567ffffffffffffffff81111561363c57600080fd5b61364884828501613397565b91505092915050565b60006020828403121561366357600080fd5b6000613671848285016133c1565b91505092915050565b60006020828403121561368c57600080fd5b600061369a848285016133d6565b91505092915050565b6000602082840312156136b557600080fd5b60006136c3848285016133eb565b91505092915050565b6000602082840312156136de57600080fd5b600082013567ffffffffffffffff8111156136f857600080fd5b6137048482850161342a565b91505092915050565b60006020828403121561371f57600080fd5b600061372d84828501613454565b91505092915050565b60006137428383614083565b60208301905092915050565b61375781614726565b82525050565b6000613768826145a5565b61377281856145d3565b935061377d83614595565b8060005b838110156137ae5781516137958882613736565b97506137a0836145c6565b925050600181019050613781565b5085935050505092915050565b6137c481614738565b82525050565b60006137d5826145b0565b6137df81856145e4565b93506137ef8185602086016147a9565b6137f881614944565b840191505092915050565b600061380e826145bb565b61381881856145f5565b93506138288185602086016147a9565b61383181614944565b840191505092915050565b6000613847826145bb565b6138518185614606565b93506138618185602086016147a9565b80840191505092915050565b600061387a602b836145f5565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006138e06032836145f5565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006139466026836145f5565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139ac601c836145f5565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006139ec6024836145f5565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a526019836145f5565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613a92601f836145f5565b91507f4d696e74206973206e6f7420617661696c61626c65207269676874206e6f77006000830152602082019050919050565b6000613ad2602c836145f5565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613b386021836145f5565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b9e6014836145f5565b91507f546f6b656e20776173206e6f74206d696e7465640000000000000000000000006000830152602082019050919050565b6000613bde6038836145f5565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613c44602a836145f5565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613caa6029836145f5565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d106019836145f5565b91507f56616c75652073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b6000613d506020836145f5565b91507f507572636861736520776f756c6420657863656564206d617820737570706c796000830152602082019050919050565b6000613d906020836145f5565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613dd0602c836145f5565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613e366020836145f5565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613e766029836145f5565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613edc602f836145f5565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613f426021836145f5565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fa86031836145f5565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061400e602c836145f5565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60208201600082015161407d6000850182614083565b50505050565b61408c81614790565b82525050565b61409b81614790565b82525050565b60006140ad828561383c565b91506140b9828461383c565b91508190509392505050565b60006020820190506140da600083018461374e565b92915050565b60006080820190506140f5600083018761374e565b614102602083018661374e565b61410f6040830185614092565b818103606083015261412181846137ca565b905095945050505050565b60006020820190508181036000830152614146818461375d565b905092915050565b600060208201905061416360008301846137bb565b92915050565b600060208201905081810360008301526141838184613803565b905092915050565b600060208201905081810360008301526141a48161386d565b9050919050565b600060208201905081810360008301526141c4816138d3565b9050919050565b600060208201905081810360008301526141e481613939565b9050919050565b600060208201905081810360008301526142048161399f565b9050919050565b60006020820190508181036000830152614224816139df565b9050919050565b6000602082019050818103600083015261424481613a45565b9050919050565b6000602082019050818103600083015261426481613a85565b9050919050565b6000602082019050818103600083015261428481613ac5565b9050919050565b600060208201905081810360008301526142a481613b2b565b9050919050565b600060208201905081810360008301526142c481613b91565b9050919050565b600060208201905081810360008301526142e481613bd1565b9050919050565b6000602082019050818103600083015261430481613c37565b9050919050565b6000602082019050818103600083015261432481613c9d565b9050919050565b6000602082019050818103600083015261434481613d03565b9050919050565b6000602082019050818103600083015261436481613d43565b9050919050565b6000602082019050818103600083015261438481613d83565b9050919050565b600060208201905081810360008301526143a481613dc3565b9050919050565b600060208201905081810360008301526143c481613e29565b9050919050565b600060208201905081810360008301526143e481613e69565b9050919050565b6000602082019050818103600083015261440481613ecf565b9050919050565b6000602082019050818103600083015261442481613f35565b9050919050565b6000602082019050818103600083015261444481613f9b565b9050919050565b6000602082019050818103600083015261446481614001565b9050919050565b60006020820190506144806000830184614067565b92915050565b600060208201905061449b6000830184614092565b92915050565b60006060820190506144b66000830186614092565b6144c3602083018561374e565b6144d06040830184614092565b949350505050565b6000604051905081810181811067ffffffffffffffff821117156144ff576144fe614915565b5b8060405250919050565b600067ffffffffffffffff82111561452457614523614915565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156145505761454f614915565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156145805761457f614915565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061461c82614790565b915061462783614790565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561465c5761465b614888565b5b828201905092915050565b600061467282614790565b915061467d83614790565b92508261468d5761468c6148b7565b5b828204905092915050565b60006146a382614790565b91506146ae83614790565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146e7576146e6614888565b5b828202905092915050565b60006146fd82614790565b915061470883614790565b92508282101561471b5761471a614888565b5b828203905092915050565b600061473182614770565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156147c75780820151818401526020810190506147ac565b838111156147d6576000848401525b50505050565b600060028204905060018216806147f457607f821691505b60208210811415614808576148076148e6565b5b50919050565b600061481982614790565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561484c5761484b614888565b5b600182019050919050565b600061486282614790565b915061486d83614790565b92508261487d5761487c6148b7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61495e81614726565b811461496957600080fd5b50565b61497581614738565b811461498057600080fd5b50565b61498c81614744565b811461499757600080fd5b50565b6149a381614790565b81146149ae57600080fd5b5056fea2646970667358221220a138187fb5e9dd1f76e8ff79905dda7a7dd7b96db6b54c8eefd487aec28d378764736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f4672616e6b6965734d616e73696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074652414e4b494500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002968747470733a2f2f6170692e6672616e6b6965736d616e73696f6e2e636f6d2f6d657461646174612f0000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636373a6b111610118578063a22cb465116100a0578063d031370b1161006f578063d031370b1461079c578063e985e9c5146107c5578063eb8d244414610802578063f2fde38b1461082d578063f47c84c5146108565761020f565b8063a22cb465146106e4578063b88d4fde1461070d578063c4e3709514610736578063c87b56dd1461075f5761020f565b8063715018a6116100e7578063715018a61461061e5780638462151c146106355780638da5cb5b1461067257806395d89b411461069d578063a0712d68146106c85761020f565b80636373a6b11461056257806370a082311461058d57806371189742146105ca5780637146bd08146105f35761020f565b806323b872dd1161019b57806342842e0e1161016a57806342842e0e1461046b5780634b369a61146104945780634f6ccce7146104bf57806355f804b3146104fc5780636352211e146105255761020f565b806323b872dd146103c55780632f745c59146103ee5780633ccfd60b1461042b5780633fa40f94146104425761020f565b806310969523116101e257806310969523146102e257806311e776fe1461030b57806318160ddd1461033457806318b200711461035f57806321bb2c87146103885761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b6004803603810190610236919061367a565b610881565b604051610248919061414e565b60405180910390f35b34801561025d57600080fd5b506102666108fb565b6040516102739190614169565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061370d565b61098d565b6040516102b091906140c5565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db91906135d4565b610a12565b005b3480156102ee57600080fd5b50610309600480360381019061030491906136cc565b610b2a565b005b34801561031757600080fd5b50610332600480360381019061032d919061370d565b610bc0565b005b34801561034057600080fd5b50610349610c46565b6040516103569190614486565b60405180910390f35b34801561036b57600080fd5b506103866004803603810190610381919061370d565b610c53565b005b34801561039457600080fd5b506103af60048036038101906103aa919061370d565b610cd9565b6040516103bc919061446b565b60405180910390f35b3480156103d157600080fd5b506103ec60048036038101906103e791906134ce565b610d58565b005b3480156103fa57600080fd5b50610415600480360381019061041091906135d4565b610db8565b6040516104229190614486565b60405180910390f35b34801561043757600080fd5b50610440610e5d565b005b34801561044e57600080fd5b5061046960048036038101906104649190613610565b610f28565b005b34801561047757600080fd5b50610492600480360381019061048d91906134ce565b61114d565b005b3480156104a057600080fd5b506104a961116d565b6040516104b69190614486565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e1919061370d565b611173565b6040516104f39190614486565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e91906136cc565b61120a565b005b34801561053157600080fd5b5061054c6004803603810190610547919061370d565b6112a0565b60405161055991906140c5565b60405180910390f35b34801561056e57600080fd5b50610577611352565b6040516105849190614169565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190613469565b6113e0565b6040516105c19190614486565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec919061370d565b611498565b005b3480156105ff57600080fd5b5061060861151e565b6040516106159190614486565b60405180910390f35b34801561062a57600080fd5b50610633611524565b005b34801561064157600080fd5b5061065c60048036038101906106579190613469565b611661565b604051610669919061412c565b60405180910390f35b34801561067e57600080fd5b5061068761175b565b60405161069491906140c5565b60405180910390f35b3480156106a957600080fd5b506106b2611785565b6040516106bf9190614169565b60405180910390f35b6106e260048036038101906106dd919061370d565b611817565b005b3480156106f057600080fd5b5061070b60048036038101906107069190613598565b611a28565b005b34801561071957600080fd5b50610734600480360381019061072f919061351d565b611ba9565b005b34801561074257600080fd5b5061075d60048036038101906107589190613651565b611c0b565b005b34801561076b57600080fd5b506107866004803603810190610781919061370d565b611ca4565b6040516107939190614169565b60405180910390f35b3480156107a857600080fd5b506107c360048036038101906107be919061370d565b611d4b565b005b3480156107d157600080fd5b506107ec60048036038101906107e79190613492565b611e8f565b6040516107f9919061414e565b60405180910390f35b34801561080e57600080fd5b50610817611f23565b604051610824919061414e565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f9190613469565b611f36565b005b34801561086257600080fd5b5061086b6120e2565b6040516108789190614486565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f457506108f3826120e8565b5b9050919050565b60606000805461090a906147dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610936906147dc565b80156109835780601f1061095857610100808354040283529160200191610983565b820191906000526020600020905b81548152906001019060200180831161096657829003601f168201915b5050505050905090565b6000610998826121ca565b6109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce9061438b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1d826112a0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a859061440b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aad612236565b73ffffffffffffffffffffffffffffffffffffffff161480610adc5750610adb81610ad6612236565b611e8f565b5b610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b12906142cb565b60405180910390fd5b610b25838361223e565b505050565b610b32612236565b73ffffffffffffffffffffffffffffffffffffffff16610b5061175b565b73ffffffffffffffffffffffffffffffffffffffff1614610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d906143ab565b60405180910390fd5b80600c9080519060200190610bbc9291906131e4565b5050565b610bc8612236565b73ffffffffffffffffffffffffffffffffffffffff16610be661175b565b73ffffffffffffffffffffffffffffffffffffffff1614610c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c33906143ab565b60405180910390fd5b80600e8190555050565b6000600880549050905090565b610c5b612236565b73ffffffffffffffffffffffffffffffffffffffff16610c7961175b565b73ffffffffffffffffffffffffffffffffffffffff1614610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc6906143ab565b60405180910390fd5b80600f8190555050565b610ce161326a565b610cea826121ca565b610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d20906142ab565b60405180910390fd5b600b60008381526020019081526020016000206040518060200160405290816000820154815250509050919050565b610d69610d63612236565b826122f7565b610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f9061442b565b60405180910390fd5b610db38383836123d5565b505050565b6000610dc3836113e0565b8210610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb9061418b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e65612236565b73ffffffffffffffffffffffffffffffffffffffff16610e8361175b565b73ffffffffffffffffffffffffffffffffffffffff1614610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed0906143ab565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f24573d6000803e3d6000fd5b5050565b610f30612236565b73ffffffffffffffffffffffffffffffffffffffff16610f4e61175b565b73ffffffffffffffffffffffffffffffffffffffff1614610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b906143ab565b60405180910390fd5b600e54610fc28251610fb4610c46565b61263190919063ffffffff16565b1115611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa9061434b565b60405180910390fd5b6000429050600080600090505b8351811015611147576110346001611026610c46565b61263190919063ffffffff16565b9150600e5482116111345761108984828151811061107b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015183612647565b604051806020016040528084815250600b6000848152602001908152602001600020600082015181600001559050507f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f82858381518110611113577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518560405161112b939291906144a1565b60405180910390a15b808061113f9061480e565b915050611010565b50505050565b61116883838360405180602001604052806000815250611ba9565b505050565b600f5481565b600061117d610c46565b82106111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b59061444b565b60405180910390fd5b600882815481106111f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b611212612236565b73ffffffffffffffffffffffffffffffffffffffff1661123061175b565b73ffffffffffffffffffffffffffffffffffffffff1614611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d906143ab565b60405180910390fd5b806011908051906020019061129c9291906131e4565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611349576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113409061430b565b60405180910390fd5b80915050919050565b600c805461135f906147dc565b80601f016020809104026020016040519081016040528092919081815260200182805461138b906147dc565b80156113d85780601f106113ad576101008083540402835291602001916113d8565b820191906000526020600020905b8154815290600101906020018083116113bb57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611451576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611448906142eb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114a0612236565b73ffffffffffffffffffffffffffffffffffffffff166114be61175b565b73ffffffffffffffffffffffffffffffffffffffff1614611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b906143ab565b60405180910390fd5b80600d8190555050565b600d5481565b61152c612236565b73ffffffffffffffffffffffffffffffffffffffff1661154a61175b565b73ffffffffffffffffffffffffffffffffffffffff16146115a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611597906143ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6060600061166e836113e0565b905060008167ffffffffffffffff8111156116b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156116e05781602001602082028036833780820191505090505b50905060005b82811015611750576116f88582610db8565b828281518110611731577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806117489061480e565b9150506116e6565b508092505050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611794906147dc565b80601f01602080910402602001604051908101604052809291908181526020018280546117c0906147dc565b801561180d5780601f106117e25761010080835404028352916020019161180d565b820191906000526020600020905b8154815290600101906020018083116117f057829003601f168201915b5050505050905090565b601060009054906101000a900460ff16611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185d9061424b565b60405180910390fd5b600d548111156118ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a29061428b565b60405180910390fd5b600e546118c8826118ba610c46565b61263190919063ffffffff16565b1115611909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119009061434b565b60405180910390fd5b3461191f82600f5461266590919063ffffffff16565b1115611960576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119579061432b565b60405180910390fd5b6000429050600080600190505b838111611a225761198f6001611981610c46565b61263190919063ffffffff16565b9150600e548211611a0f576119a43383612647565b604051806020016040528084815250600b6000848152602001908152602001600020600082015181600001559050507f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f823385604051611a06939291906144a1565b60405180910390a15b8080611a1a9061480e565b91505061196d565b50505050565b611a30612236565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a959061422b565b60405180910390fd5b8060056000611aab612236565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b58612236565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b9d919061414e565b60405180910390a35050565b611bba611bb4612236565b836122f7565b611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf09061442b565b60405180910390fd5b611c058484848461267b565b50505050565b611c13612236565b73ffffffffffffffffffffffffffffffffffffffff16611c3161175b565b73ffffffffffffffffffffffffffffffffffffffff1614611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e906143ab565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060611caf826121ca565b611cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce5906143eb565b60405180910390fd5b6000611cf86126d7565b90506000815111611d185760405180602001604052806000815250611d43565b80611d2284612769565b604051602001611d339291906140a1565b6040516020818303038152906040525b915050919050565b611d53612236565b73ffffffffffffffffffffffffffffffffffffffff16611d7161175b565b73ffffffffffffffffffffffffffffffffffffffff1614611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe906143ab565b60405180910390fd5b6000804290506000600190505b838111611e8957611df66001611de8610c46565b61263190919063ffffffff16565b9250600e548311611e7657611e0b3384612647565b604051806020016040528083815250600b6000858152602001908152602001600020600082015181600001559050507f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f833384604051611e6d939291906144a1565b60405180910390a15b8080611e819061480e565b915050611dd4565b50505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b611f3e612236565b73ffffffffffffffffffffffffffffffffffffffff16611f5c61175b565b73ffffffffffffffffffffffffffffffffffffffff1614611fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa9906143ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612022576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612019906141cb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121b357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806121c357506121c282612916565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122b1836112a0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612302826121ca565b612341576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123389061426b565b60405180910390fd5b600061234c836112a0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123bb57508373ffffffffffffffffffffffffffffffffffffffff166123a38461098d565b73ffffffffffffffffffffffffffffffffffffffff16145b806123cc57506123cb8185611e8f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123f5826112a0565b73ffffffffffffffffffffffffffffffffffffffff161461244b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612442906143cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b29061420b565b60405180910390fd5b6124c6838383612980565b6124d160008261223e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461252191906146f2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125789190614611565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000818361263f9190614611565b905092915050565b612661828260405180602001604052806000815250612a94565b5050565b600081836126739190614698565b905092915050565b6126868484846123d5565b61269284848484612aef565b6126d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c8906141ab565b60405180910390fd5b50505050565b6060601180546126e6906147dc565b80601f0160208091040260200160405190810160405280929190818152602001828054612712906147dc565b801561275f5780601f106127345761010080835404028352916020019161275f565b820191906000526020600020905b81548152906001019060200180831161274257829003601f168201915b5050505050905090565b606060008214156127b1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612911565b600082905060005b600082146127e35780806127cc9061480e565b915050600a826127dc9190614667565b91506127b9565b60008167ffffffffffffffff811115612825577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128575781602001600182028036833780820191505090505b5090505b6000851461290a5760018261287091906146f2565b9150600a8561287f9190614857565b603061288b9190614611565b60f81b8183815181106128c7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129039190614667565b945061285b565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61298b838383612c86565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129ce576129c981612c8b565b612a0d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a0c57612a0b8382612cd4565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a5057612a4b81612e41565b612a8f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a8e57612a8d8282612f84565b5b5b505050565b612a9e8383613003565b612aab6000848484612aef565b612aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae1906141ab565b60405180910390fd5b505050565b6000612b108473ffffffffffffffffffffffffffffffffffffffff166131d1565b15612c79578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b39612236565b8786866040518563ffffffff1660e01b8152600401612b5b94939291906140e0565b602060405180830381600087803b158015612b7557600080fd5b505af1925050508015612ba657506040513d601f19601f82011682018060405250810190612ba391906136a3565b60015b612c29573d8060008114612bd6576040519150601f19603f3d011682016040523d82523d6000602084013e612bdb565b606091505b50600081511415612c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c18906141ab565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c7e565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ce1846113e0565b612ceb91906146f2565b9050600060076000848152602001908152602001600020549050818114612dd0576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e5591906146f2565b9050600060096000848152602001908152602001600020549050600060088381548110612eab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612ef3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f68577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612f8f836113e0565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306a9061436b565b60405180910390fd5b61307c816121ca565b156130bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b3906141eb565b60405180910390fd5b6130c860008383612980565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131189190614611565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546131f0906147dc565b90600052602060002090601f0160209004810192826132125760008555613259565b82601f1061322b57805160ff1916838001178555613259565b82800160010185558215613259579182015b8281111561325857825182559160200191906001019061323d565b5b509050613266919061327d565b5090565b6040518060200160405280600081525090565b5b8082111561329657600081600090555060010161327e565b5090565b60006132ad6132a884614509565b6144d8565b905080838252602082019050828560208602820111156132cc57600080fd5b60005b858110156132fc57816132e28882613382565b8452602084019350602083019250506001810190506132cf565b5050509392505050565b600061331961331484614535565b6144d8565b90508281526020810184848401111561333157600080fd5b61333c84828561479a565b509392505050565b600061335761335284614565565b6144d8565b90508281526020810184848401111561336f57600080fd5b61337a84828561479a565b509392505050565b60008135905061339181614955565b92915050565b600082601f8301126133a857600080fd5b81356133b884826020860161329a565b91505092915050565b6000813590506133d08161496c565b92915050565b6000813590506133e581614983565b92915050565b6000815190506133fa81614983565b92915050565b600082601f83011261341157600080fd5b8135613421848260208601613306565b91505092915050565b600082601f83011261343b57600080fd5b813561344b848260208601613344565b91505092915050565b6000813590506134638161499a565b92915050565b60006020828403121561347b57600080fd5b600061348984828501613382565b91505092915050565b600080604083850312156134a557600080fd5b60006134b385828601613382565b92505060206134c485828601613382565b9150509250929050565b6000806000606084860312156134e357600080fd5b60006134f186828701613382565b935050602061350286828701613382565b925050604061351386828701613454565b9150509250925092565b6000806000806080858703121561353357600080fd5b600061354187828801613382565b945050602061355287828801613382565b935050604061356387828801613454565b925050606085013567ffffffffffffffff81111561358057600080fd5b61358c87828801613400565b91505092959194509250565b600080604083850312156135ab57600080fd5b60006135b985828601613382565b92505060206135ca858286016133c1565b9150509250929050565b600080604083850312156135e757600080fd5b60006135f585828601613382565b925050602061360685828601613454565b9150509250929050565b60006020828403121561362257600080fd5b600082013567ffffffffffffffff81111561363c57600080fd5b61364884828501613397565b91505092915050565b60006020828403121561366357600080fd5b6000613671848285016133c1565b91505092915050565b60006020828403121561368c57600080fd5b600061369a848285016133d6565b91505092915050565b6000602082840312156136b557600080fd5b60006136c3848285016133eb565b91505092915050565b6000602082840312156136de57600080fd5b600082013567ffffffffffffffff8111156136f857600080fd5b6137048482850161342a565b91505092915050565b60006020828403121561371f57600080fd5b600061372d84828501613454565b91505092915050565b60006137428383614083565b60208301905092915050565b61375781614726565b82525050565b6000613768826145a5565b61377281856145d3565b935061377d83614595565b8060005b838110156137ae5781516137958882613736565b97506137a0836145c6565b925050600181019050613781565b5085935050505092915050565b6137c481614738565b82525050565b60006137d5826145b0565b6137df81856145e4565b93506137ef8185602086016147a9565b6137f881614944565b840191505092915050565b600061380e826145bb565b61381881856145f5565b93506138288185602086016147a9565b61383181614944565b840191505092915050565b6000613847826145bb565b6138518185614606565b93506138618185602086016147a9565b80840191505092915050565b600061387a602b836145f5565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006138e06032836145f5565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006139466026836145f5565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139ac601c836145f5565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006139ec6024836145f5565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a526019836145f5565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613a92601f836145f5565b91507f4d696e74206973206e6f7420617661696c61626c65207269676874206e6f77006000830152602082019050919050565b6000613ad2602c836145f5565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613b386021836145f5565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b9e6014836145f5565b91507f546f6b656e20776173206e6f74206d696e7465640000000000000000000000006000830152602082019050919050565b6000613bde6038836145f5565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613c44602a836145f5565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613caa6029836145f5565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d106019836145f5565b91507f56616c75652073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b6000613d506020836145f5565b91507f507572636861736520776f756c6420657863656564206d617820737570706c796000830152602082019050919050565b6000613d906020836145f5565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613dd0602c836145f5565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613e366020836145f5565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613e766029836145f5565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613edc602f836145f5565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613f426021836145f5565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fa86031836145f5565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061400e602c836145f5565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60208201600082015161407d6000850182614083565b50505050565b61408c81614790565b82525050565b61409b81614790565b82525050565b60006140ad828561383c565b91506140b9828461383c565b91508190509392505050565b60006020820190506140da600083018461374e565b92915050565b60006080820190506140f5600083018761374e565b614102602083018661374e565b61410f6040830185614092565b818103606083015261412181846137ca565b905095945050505050565b60006020820190508181036000830152614146818461375d565b905092915050565b600060208201905061416360008301846137bb565b92915050565b600060208201905081810360008301526141838184613803565b905092915050565b600060208201905081810360008301526141a48161386d565b9050919050565b600060208201905081810360008301526141c4816138d3565b9050919050565b600060208201905081810360008301526141e481613939565b9050919050565b600060208201905081810360008301526142048161399f565b9050919050565b60006020820190508181036000830152614224816139df565b9050919050565b6000602082019050818103600083015261424481613a45565b9050919050565b6000602082019050818103600083015261426481613a85565b9050919050565b6000602082019050818103600083015261428481613ac5565b9050919050565b600060208201905081810360008301526142a481613b2b565b9050919050565b600060208201905081810360008301526142c481613b91565b9050919050565b600060208201905081810360008301526142e481613bd1565b9050919050565b6000602082019050818103600083015261430481613c37565b9050919050565b6000602082019050818103600083015261432481613c9d565b9050919050565b6000602082019050818103600083015261434481613d03565b9050919050565b6000602082019050818103600083015261436481613d43565b9050919050565b6000602082019050818103600083015261438481613d83565b9050919050565b600060208201905081810360008301526143a481613dc3565b9050919050565b600060208201905081810360008301526143c481613e29565b9050919050565b600060208201905081810360008301526143e481613e69565b9050919050565b6000602082019050818103600083015261440481613ecf565b9050919050565b6000602082019050818103600083015261442481613f35565b9050919050565b6000602082019050818103600083015261444481613f9b565b9050919050565b6000602082019050818103600083015261446481614001565b9050919050565b60006020820190506144806000830184614067565b92915050565b600060208201905061449b6000830184614092565b92915050565b60006060820190506144b66000830186614092565b6144c3602083018561374e565b6144d06040830184614092565b949350505050565b6000604051905081810181811067ffffffffffffffff821117156144ff576144fe614915565b5b8060405250919050565b600067ffffffffffffffff82111561452457614523614915565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156145505761454f614915565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156145805761457f614915565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061461c82614790565b915061462783614790565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561465c5761465b614888565b5b828201905092915050565b600061467282614790565b915061467d83614790565b92508261468d5761468c6148b7565b5b828204905092915050565b60006146a382614790565b91506146ae83614790565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146e7576146e6614888565b5b828202905092915050565b60006146fd82614790565b915061470883614790565b92508282101561471b5761471a614888565b5b828203905092915050565b600061473182614770565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156147c75780820151818401526020810190506147ac565b838111156147d6576000848401525b50505050565b600060028204905060018216806147f457607f821691505b60208210811415614808576148076148e6565b5b50919050565b600061481982614790565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561484c5761484b614888565b5b600182019050919050565b600061486282614790565b915061486d83614790565b92508261487d5761487c6148b7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61495e81614726565b811461496957600080fd5b50565b61497581614738565b811461498057600080fd5b50565b61498c81614744565b811461499757600080fd5b50565b6149a381614790565b81146149ae57600080fd5b5056fea2646970667358221220a138187fb5e9dd1f76e8ff79905dda7a7dd7b96db6b54c8eefd487aec28d378764736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f4672616e6b6965734d616e73696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074652414e4b494500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002968747470733a2f2f6170692e6672616e6b6965736d616e73696f6e2e636f6d2f6d657461646174612f0000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): FrankiesMansion
Arg [1] : symbol (string): FRANKIE
Arg [2] : _baseUri (string): https://api.frankiesmansion.com/metadata/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 4672616e6b6965734d616e73696f6e0000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 4652414e4b494500000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000029
Arg [8] : 68747470733a2f2f6170692e6672616e6b6965736d616e73696f6e2e636f6d2f
Arg [9] : 6d657461646174612f0000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

264:5000:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:234:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2343:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3755:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3306:388;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1290:120:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1451:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1546:111:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1923::7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2084:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4619:300:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1222:253:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2774:137:7;;;;;;;;;;;;;:::i;:::-;;3466:592;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4985:149:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;873:48:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1729:230:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2405:93:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2046:235:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;636:29:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1784:205:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1593:107:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;733:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1693:145:13;;;;;;;;;;;;;:::i;:::-;;4927:335:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1061:85:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2505:102:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4097:784:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4039:290:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5200:282;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1770:96:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2673:353:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2955:459:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4395:162:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;960:31:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1987:240:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;812:32:7;;;;;;;;;;;;;:::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;1290:120:7:-;1284:12:13;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1388:15:7::1;1375:10;:28;;;;;;;;;;;;:::i;:::-;;1290:120:::0;:::o;1451:99::-;1284:12:13;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1533:10:7::1;1520;:23;;;;1451:99:::0;:::o;1546:111:4:-;1607:7;1633:10;:17;;;;1626:24;;1546:111;:::o;1923::7:-;1284:12:13;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2014:13:7::1;1998;:29;;;;1923:111:::0;:::o;2084:203::-;2148:27;;:::i;:::-;2195:17;2203:8;2195:7;:17::i;:::-;2187:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;2255:15;:25;2271:8;2255:25;;;;;;;;;;;2248:32;;;;;;;;;;;;;;;;;;;2084:203;;;:::o;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;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;2774:137:7:-;1284:12:13;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2821:12:7::1;2836:21;2821:36;;2875:10;2867:28;;:37;2896:7;2867:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1343:1:13;2774:137:7:o:0;3466:592::-;1284:12:13;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3584:10:7::1;;3547:33;3565:7;:14;3547:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:47;;3539:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;3641:16;3660:15;3641:34;;3685:15;3724:6:::0;3733:1:::1;3724:10;;3719:333;3740:7;:14;3736:1;:18;3719:333;;;3785:20;3803:1;3785:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;3775:30;;3834:10;;3823:7;:21;3819:223;;3864:30;3874:7;3882:1;3874:10;;;;;;;;;;;;;;;;;;;;;;3886:7;3864:9;:30::i;:::-;3939:23;;;;;;;;3953:8;3939:23;;::::0;3912:15:::1;:24;3928:7;3912:24;;;;;;;;;;;:50;;;;;;;;;;;3985:42;3997:7;4006;4014:1;4006:10;;;;;;;;;;;;;;;;;;;;;;4018:8;3985:42;;;;;;;;:::i;:::-;;;;;;;;3819:223;3756:3;;;;;:::i;:::-;;;;3719:333;;;;1343:1:13;;3466:592:7::0;:::o;4985:149:3:-;5088:39;5105:4;5111:2;5115:7;5088:39;;;;;;;;;;;;:16;:39::i;:::-;4985:149;;;:::o;873:48:7:-;;;;:::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;2405:93:7:-;1284:12:13;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2484:7:7::1;2474;:17;;;;;;;;;;;;:::i;:::-;;2405: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;636:29:7:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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;1593:107:7:-;1284:12:13;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1681:12:7::1;1666;:27;;;;1593:107:::0;:::o;733:29::-;;;;:::o;1693:145:13:-;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;4927:335:7:-;4988:16;5016:15;5034:17;5044:6;5034:9;:17::i;:::-;5016:35;;5062:25;5104:10;5090:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5062:53;;5129:6;5125:105;5145:10;5141:1;:14;5125:105;;;5189:30;5209:6;5217:1;5189:19;:30::i;:::-;5175:8;5184:1;5175:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;5157:3;;;;;:::i;:::-;;;;5125:105;;;;5247:8;5240:15;;;;4927:335;;;:::o;1061:85:13:-;1107:7;1133:6;;;;;;;;;;;1126:13;;1061:85;:::o;2505:102:3:-;2561:13;2593:7;2586:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2505:102;:::o;4097:784:7:-;4154:12;;;;;;;;;;;4146:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;4227:12;;4220:3;:19;;4212:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;4321:10;;4295:22;4313:3;4295:13;:11;:13::i;:::-;:17;;:22;;;;:::i;:::-;:36;;4287:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;4412:9;4386:22;4404:3;4386:13;;:17;;:22;;;;:::i;:::-;:35;;4378:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4461:16;4480:15;4461:34;;4505:12;4540:6;4549:1;4540:10;;4536:339;4557:3;4552:1;:8;4536:339;;4591:20;4609:1;4591:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;4581:30;;4640:10;;4629:7;:21;4625:240;;4670:30;4680:10;4692:7;4670:9;:30::i;:::-;4745:23;;;;;;;;4759:8;4745:23;;;4718:15;:24;4734:7;4718:24;;;;;;;;;;;:50;;;;;;;;;;;4808:42;4820:7;4829:10;4841:8;4808:42;;;;;;;;:::i;:::-;;;;;;;;4625:240;4562:3;;;;;:::i;:::-;;;;4536:339;;;;4097:784;;;:::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;1770:96:7:-;1284:12:13;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1850:9:7::1;1835:12;;:24;;;;;;;;;;;;;;;;;;1770: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;2955:459:7:-;1284:12:13;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3018:12:7::1;3040:16:::0;3059:15:::1;3040:34;;3090:6;3099:1;3090:10;;3085:323;3107:3;3102:1;:8;3085:323;;3141:20;3159:1;3141:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;3131:30;;3190:10;;3179:7;:21;3175:223;;3220:30;3230:10;3242:7;3220:9;:30::i;:::-;3295:23;;;;;;;;3309:8;3295:23;;::::0;3268:15:::1;:24;3284:7;3268:24;;;;;;;;;;;:50;;;;;;;;;;;3341:42;3353:7;3362:10;3374:8;3341:42;;;;;;;;:::i;:::-;;;;;;;;3175:223;3112:3;;;;;:::i;:::-;;;;3085:323;;;;1343:1:13;;2955:459:7::0;:::o;4395:162:3:-;4492:4;4515:18;:25;4534:5;4515:25;;;;;;;;;;;;;;;:35;4541:8;4515:35;;;;;;;;;;;;;;;;;;;;;;;;;4508:42;;4395:162;;;;:::o;960:31:7:-;;;;;;;;;;;;;:::o;1987:240:13:-;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;812:32:7:-;;;;:::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;2672:96:14:-;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;3382:96:14:-;3440:7;3470:1;3466;:5;;;;:::i;:::-;3459:12;;3382:96;;;;:::o;6344:269:3:-;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;2630:106:7:-;2690:13;2722:7;2715:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2630:106;:::o;271:703:15:-;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:375::-;;10202:67;10266:2;10261:3;10202:67;:::i;:::-;10195:74;;10299:34;10295:1;10290:3;10286:11;10279:55;10365:13;10360:2;10355:3;10351:12;10344:35;10405:2;10400:3;10396:12;10389:19;;10185:229;;;:::o;10420:382::-;;10583:67;10647:2;10642:3;10583:67;:::i;:::-;10576:74;;10680:34;10676:1;10671:3;10667:11;10660:55;10746:20;10741:2;10736:3;10732:12;10725:42;10793:2;10788:3;10784:12;10777:19;;10566:236;;;:::o;10808:370::-;;10971:67;11035:2;11030:3;10971:67;:::i;:::-;10964:74;;11068:34;11064:1;11059:3;11055:11;11048:55;11134:8;11129:2;11124:3;11120:12;11113:30;11169:2;11164:3;11160:12;11153:19;;10954:224;;;:::o;11184:326::-;;11347:67;11411:2;11406:3;11347:67;:::i;:::-;11340:74;;11444:30;11440:1;11435:3;11431:11;11424:51;11501:2;11496:3;11492:12;11485:19;;11330:180;;;:::o;11516:368::-;;11679:67;11743:2;11738:3;11679:67;:::i;:::-;11672:74;;11776:34;11772:1;11767:3;11763:11;11756:55;11842:6;11837:2;11832:3;11828:12;11821:28;11875:2;11870:3;11866:12;11859:19;;11662:222;;;:::o;11890:323::-;;12053:67;12117:2;12112:3;12053:67;:::i;:::-;12046:74;;12150:27;12146:1;12141:3;12137:11;12130:48;12204:2;12199:3;12195:12;12188:19;;12036:177;;;:::o;12219:329::-;;12382:67;12446:2;12441:3;12382:67;:::i;:::-;12375:74;;12479:33;12475:1;12470:3;12466:11;12459:54;12539:2;12534:3;12530:12;12523:19;;12365:183;;;:::o;12554:376::-;;12717:67;12781:2;12776:3;12717:67;:::i;:::-;12710:74;;12814:34;12810:1;12805:3;12801:11;12794:55;12880:14;12875:2;12870:3;12866:12;12859:36;12921:2;12916:3;12912:12;12905:19;;12700:230;;;:::o;12936:365::-;;13099:67;13163:2;13158:3;13099:67;:::i;:::-;13092:74;;13196:34;13192:1;13187:3;13183:11;13176:55;13262:3;13257:2;13252:3;13248:12;13241:25;13292:2;13287:3;13283:12;13276:19;;13082:219;;;:::o;13307:318::-;;13470:67;13534:2;13529:3;13470:67;:::i;:::-;13463:74;;13567:22;13563:1;13558:3;13554:11;13547:43;13616:2;13611:3;13607:12;13600:19;;13453:172;;;:::o;13631:388::-;;13794:67;13858:2;13853:3;13794:67;:::i;:::-;13787:74;;13891:34;13887:1;13882:3;13878:11;13871:55;13957:26;13952:2;13947:3;13943:12;13936:48;14010:2;14005:3;14001:12;13994:19;;13777:242;;;:::o;14025:374::-;;14188:67;14252:2;14247:3;14188:67;:::i;:::-;14181:74;;14285:34;14281:1;14276:3;14272:11;14265:55;14351:12;14346:2;14341:3;14337:12;14330:34;14390:2;14385:3;14381:12;14374:19;;14171:228;;;:::o;14405:373::-;;14568:67;14632:2;14627:3;14568:67;:::i;:::-;14561:74;;14665:34;14661:1;14656:3;14652:11;14645:55;14731:11;14726:2;14721:3;14717:12;14710:33;14769:2;14764:3;14760:12;14753:19;;14551:227;;;:::o;14784:323::-;;14947:67;15011:2;15006:3;14947:67;:::i;:::-;14940:74;;15044:27;15040:1;15035:3;15031:11;15024:48;15098:2;15093:3;15089:12;15082:19;;14930:177;;;:::o;15113:330::-;;15276:67;15340:2;15335:3;15276:67;:::i;:::-;15269:74;;15373:34;15369:1;15364:3;15360:11;15353:55;15434:2;15429:3;15425:12;15418:19;;15259:184;;;:::o;15449:330::-;;15612:67;15676:2;15671:3;15612:67;:::i;:::-;15605:74;;15709:34;15705:1;15700:3;15696:11;15689:55;15770:2;15765:3;15761:12;15754:19;;15595:184;;;:::o;15785:376::-;;15948:67;16012:2;16007:3;15948:67;:::i;:::-;15941:74;;16045:34;16041:1;16036:3;16032:11;16025:55;16111:14;16106:2;16101:3;16097:12;16090:36;16152:2;16147:3;16143:12;16136:19;;15931:230;;;:::o;16167:330::-;;16330:67;16394:2;16389:3;16330:67;:::i;:::-;16323:74;;16427:34;16423:1;16418:3;16414:11;16407:55;16488:2;16483:3;16479:12;16472:19;;16313:184;;;:::o;16503:373::-;;16666:67;16730:2;16725:3;16666:67;:::i;:::-;16659:74;;16763:34;16759:1;16754:3;16750:11;16743:55;16829:11;16824:2;16819:3;16815:12;16808:33;16867:2;16862:3;16858:12;16851:19;;16649:227;;;:::o;16882:379::-;;17045:67;17109:2;17104:3;17045:67;:::i;:::-;17038:74;;17142:34;17138:1;17133:3;17129:11;17122:55;17208:17;17203:2;17198:3;17194:12;17187:39;17252:2;17247:3;17243:12;17236:19;;17028:233;;;:::o;17267:365::-;;17430:67;17494:2;17489:3;17430:67;:::i;:::-;17423:74;;17527:34;17523:1;17518:3;17514:11;17507:55;17593:3;17588:2;17583:3;17579:12;17572:25;17623:2;17618:3;17614:12;17607:19;;17413:219;;;:::o;17638:381::-;;17801:67;17865:2;17860:3;17801:67;:::i;:::-;17794:74;;17898:34;17894:1;17889:3;17885:11;17878:55;17964:19;17959:2;17954:3;17950:12;17943:41;18010:2;18005:3;18001:12;17994:19;;17784:235;;;:::o;18025:376::-;;18188:67;18252:2;18247:3;18188:67;:::i;:::-;18181:74;;18285:34;18281:1;18276:3;18272:11;18265:55;18351:14;18346:2;18341:3;18337:12;18330:36;18392:2;18387:3;18383:12;18376:19;;18171:230;;;:::o;18491:349::-;18650:4;18645:3;18641:14;18741:4;18734:5;18730:16;18724:23;18760:63;18817:4;18812:3;18808:14;18794:12;18760:63;:::i;:::-;18665:168;18619:221;;;:::o;18846:108::-;18923:24;18941:5;18923:24;:::i;:::-;18918:3;18911:37;18901:53;;:::o;18960:118::-;19047:24;19065:5;19047:24;:::i;:::-;19042:3;19035:37;19025:53;;:::o;19084:435::-;;19286:95;19377:3;19368:6;19286:95;:::i;:::-;19279:102;;19398:95;19489:3;19480:6;19398:95;:::i;:::-;19391:102;;19510:3;19503:10;;19268:251;;;;;:::o;19525:222::-;;19656:2;19645:9;19641:18;19633:26;;19669:71;19737:1;19726:9;19722:17;19713:6;19669:71;:::i;:::-;19623:124;;;;:::o;19753:640::-;;19986:3;19975:9;19971:19;19963:27;;20000:71;20068:1;20057:9;20053:17;20044:6;20000:71;:::i;:::-;20081:72;20149:2;20138:9;20134:18;20125:6;20081:72;:::i;:::-;20163;20231:2;20220:9;20216:18;20207:6;20163:72;:::i;:::-;20282:9;20276:4;20272:20;20267:2;20256:9;20252:18;20245:48;20310:76;20381:4;20372:6;20310:76;:::i;:::-;20302:84;;19953:440;;;;;;;:::o;20399:373::-;;20580:2;20569:9;20565:18;20557:26;;20629:9;20623:4;20619:20;20615:1;20604:9;20600:17;20593:47;20657:108;20760:4;20751:6;20657:108;:::i;:::-;20649:116;;20547:225;;;;:::o;20778:210::-;;20903:2;20892:9;20888:18;20880:26;;20916:65;20978:1;20967:9;20963:17;20954:6;20916:65;:::i;:::-;20870:118;;;;:::o;20994:313::-;;21145:2;21134:9;21130:18;21122:26;;21194:9;21188:4;21184:20;21180:1;21169:9;21165:17;21158:47;21222:78;21295:4;21286:6;21222:78;:::i;:::-;21214:86;;21112:195;;;;:::o;21313:419::-;;21517:2;21506:9;21502:18;21494:26;;21566:9;21560:4;21556:20;21552:1;21541:9;21537:17;21530:47;21594:131;21720:4;21594:131;:::i;:::-;21586:139;;21484:248;;;:::o;21738:419::-;;21942:2;21931:9;21927:18;21919:26;;21991:9;21985:4;21981:20;21977:1;21966:9;21962:17;21955:47;22019:131;22145:4;22019:131;:::i;:::-;22011:139;;21909:248;;;:::o;22163:419::-;;22367:2;22356:9;22352:18;22344:26;;22416:9;22410:4;22406:20;22402:1;22391:9;22387:17;22380:47;22444:131;22570:4;22444:131;:::i;:::-;22436:139;;22334:248;;;:::o;22588:419::-;;22792:2;22781:9;22777:18;22769:26;;22841:9;22835:4;22831:20;22827:1;22816:9;22812:17;22805:47;22869:131;22995:4;22869:131;:::i;:::-;22861:139;;22759:248;;;:::o;23013:419::-;;23217:2;23206:9;23202:18;23194:26;;23266:9;23260:4;23256:20;23252:1;23241:9;23237:17;23230:47;23294:131;23420:4;23294:131;:::i;:::-;23286:139;;23184:248;;;:::o;23438:419::-;;23642:2;23631:9;23627:18;23619:26;;23691:9;23685:4;23681:20;23677:1;23666:9;23662:17;23655:47;23719:131;23845:4;23719:131;:::i;:::-;23711:139;;23609:248;;;:::o;23863:419::-;;24067:2;24056:9;24052:18;24044:26;;24116:9;24110:4;24106:20;24102:1;24091:9;24087:17;24080:47;24144:131;24270:4;24144:131;:::i;:::-;24136:139;;24034:248;;;:::o;24288:419::-;;24492:2;24481:9;24477:18;24469:26;;24541:9;24535:4;24531:20;24527:1;24516:9;24512:17;24505:47;24569:131;24695:4;24569:131;:::i;:::-;24561:139;;24459:248;;;:::o;24713:419::-;;24917:2;24906:9;24902:18;24894:26;;24966:9;24960:4;24956:20;24952:1;24941:9;24937:17;24930:47;24994:131;25120:4;24994:131;:::i;:::-;24986:139;;24884:248;;;:::o;25138:419::-;;25342:2;25331:9;25327:18;25319:26;;25391:9;25385:4;25381:20;25377:1;25366:9;25362:17;25355:47;25419:131;25545:4;25419:131;:::i;:::-;25411:139;;25309:248;;;:::o;25563:419::-;;25767:2;25756:9;25752:18;25744:26;;25816:9;25810:4;25806:20;25802:1;25791:9;25787:17;25780:47;25844:131;25970:4;25844:131;:::i;:::-;25836:139;;25734:248;;;:::o;25988:419::-;;26192:2;26181:9;26177:18;26169:26;;26241:9;26235:4;26231:20;26227:1;26216:9;26212:17;26205:47;26269:131;26395:4;26269:131;:::i;:::-;26261:139;;26159:248;;;:::o;26413:419::-;;26617:2;26606:9;26602:18;26594:26;;26666:9;26660:4;26656:20;26652:1;26641:9;26637:17;26630:47;26694:131;26820:4;26694:131;:::i;:::-;26686:139;;26584:248;;;:::o;26838:419::-;;27042:2;27031:9;27027:18;27019:26;;27091:9;27085:4;27081:20;27077:1;27066:9;27062:17;27055:47;27119:131;27245:4;27119:131;:::i;:::-;27111:139;;27009:248;;;:::o;27263:419::-;;27467:2;27456:9;27452:18;27444:26;;27516:9;27510:4;27506:20;27502:1;27491:9;27487:17;27480:47;27544:131;27670:4;27544:131;:::i;:::-;27536:139;;27434:248;;;:::o;27688:419::-;;27892:2;27881:9;27877:18;27869:26;;27941:9;27935:4;27931:20;27927:1;27916:9;27912:17;27905:47;27969:131;28095:4;27969:131;:::i;:::-;27961:139;;27859:248;;;:::o;28113:419::-;;28317:2;28306:9;28302:18;28294:26;;28366:9;28360:4;28356:20;28352:1;28341:9;28337:17;28330:47;28394:131;28520:4;28394:131;:::i;:::-;28386:139;;28284:248;;;:::o;28538:419::-;;28742:2;28731:9;28727:18;28719:26;;28791:9;28785:4;28781:20;28777:1;28766:9;28762:17;28755:47;28819:131;28945:4;28819:131;:::i;:::-;28811:139;;28709:248;;;:::o;28963:419::-;;29167:2;29156:9;29152:18;29144:26;;29216:9;29210:4;29206:20;29202:1;29191:9;29187:17;29180:47;29244:131;29370:4;29244:131;:::i;:::-;29236:139;;29134:248;;;:::o;29388:419::-;;29592:2;29581:9;29577:18;29569:26;;29641:9;29635:4;29631:20;29627:1;29616:9;29612:17;29605:47;29669:131;29795:4;29669:131;:::i;:::-;29661:139;;29559:248;;;:::o;29813:419::-;;30017:2;30006:9;30002:18;29994:26;;30066:9;30060:4;30056:20;30052:1;30041:9;30037:17;30030:47;30094:131;30220:4;30094:131;:::i;:::-;30086:139;;29984:248;;;:::o;30238:419::-;;30442:2;30431:9;30427:18;30419:26;;30491:9;30485:4;30481:20;30477:1;30466:9;30462:17;30455:47;30519:131;30645:4;30519:131;:::i;:::-;30511:139;;30409:248;;;:::o;30663:419::-;;30867:2;30856:9;30852:18;30844:26;;30916:9;30910:4;30906:20;30902:1;30891:9;30887:17;30880:47;30944:131;31070:4;30944:131;:::i;:::-;30936:139;;30834:248;;;:::o;31088:346::-;;31281:2;31270:9;31266:18;31258:26;;31294:133;31424:1;31413:9;31409:17;31400:6;31294:133;:::i;:::-;31248:186;;;;:::o;31440:222::-;;31571:2;31560:9;31556:18;31548:26;;31584:71;31652:1;31641:9;31637:17;31628:6;31584:71;:::i;:::-;31538:124;;;;:::o;31668:442::-;;31855:2;31844:9;31840:18;31832:26;;31868:71;31936:1;31925:9;31921:17;31912:6;31868:71;:::i;:::-;31949:72;32017:2;32006:9;32002:18;31993:6;31949:72;:::i;:::-;32031;32099:2;32088:9;32084:18;32075:6;32031:72;:::i;:::-;31822:288;;;;;;:::o;32116:283::-;;32182:2;32176:9;32166:19;;32224:4;32216:6;32212:17;32331:6;32319:10;32316:22;32295:18;32283:10;32280:34;32277:62;32274:2;;;32342:18;;:::i;:::-;32274:2;32382:10;32378:2;32371:22;32156:243;;;;:::o;32405:311::-;;32572:18;32564:6;32561:30;32558:2;;;32594:18;;:::i;:::-;32558:2;32644:4;32636:6;32632:17;32624:25;;32704:4;32698;32694:15;32686:23;;32487:229;;;:::o;32722:331::-;;32873:18;32865:6;32862:30;32859:2;;;32895:18;;:::i;:::-;32859:2;32980:4;32976:9;32969:4;32961:6;32957:17;32953:33;32945:41;;33041:4;33035;33031:15;33023:23;;32788:265;;;:::o;33059:332::-;;33211:18;33203:6;33200:30;33197:2;;;33233:18;;:::i;:::-;33197:2;33318:4;33314:9;33307:4;33299:6;33295:17;33291:33;33283:41;;33379:4;33373;33369:15;33361:23;;33126:265;;;:::o;33397:132::-;;33487:3;33479:11;;33517:4;33512:3;33508:14;33500:22;;33469:60;;;:::o;33535:114::-;;33636:5;33630:12;33620:22;;33609:40;;;:::o;33655:98::-;;33740:5;33734:12;33724:22;;33713:40;;;:::o;33759:99::-;;33845:5;33839:12;33829:22;;33818:40;;;:::o;33864:113::-;;33966:4;33961:3;33957:14;33949:22;;33939:38;;;:::o;33983:184::-;;34116:6;34111:3;34104:19;34156:4;34151:3;34147:14;34132:29;;34094:73;;;;:::o;34173:168::-;;34290:6;34285:3;34278:19;34330:4;34325:3;34321:14;34306:29;;34268:73;;;;:::o;34347:169::-;;34465:6;34460:3;34453:19;34505:4;34500:3;34496:14;34481:29;;34443:73;;;;:::o;34522:148::-;;34661:3;34646:18;;34636:34;;;;:::o;34676:305::-;;34735:20;34753:1;34735:20;:::i;:::-;34730:25;;34769:20;34787:1;34769:20;:::i;:::-;34764:25;;34923:1;34855:66;34851:74;34848:1;34845:81;34842:2;;;34929:18;;:::i;:::-;34842:2;34973:1;34970;34966:9;34959:16;;34720:261;;;;:::o;34987:185::-;;35044:20;35062:1;35044:20;:::i;:::-;35039:25;;35078:20;35096:1;35078:20;:::i;:::-;35073:25;;35117:1;35107:2;;35122:18;;:::i;:::-;35107:2;35164:1;35161;35157:9;35152:14;;35029:143;;;;:::o;35178:348::-;;35241:20;35259:1;35241:20;:::i;:::-;35236:25;;35275:20;35293:1;35275:20;:::i;:::-;35270:25;;35463:1;35395:66;35391:74;35388:1;35385:81;35380:1;35373:9;35366:17;35362:105;35359:2;;;35470:18;;:::i;:::-;35359:2;35518:1;35515;35511:9;35500:20;;35226:300;;;;:::o;35532:191::-;;35592:20;35610:1;35592:20;:::i;:::-;35587:25;;35626:20;35644:1;35626:20;:::i;:::-;35621:25;;35665:1;35662;35659:8;35656:2;;;35670:18;;:::i;:::-;35656:2;35715:1;35712;35708:9;35700:17;;35577:146;;;;:::o;35729:96::-;;35795:24;35813:5;35795:24;:::i;:::-;35784:35;;35774:51;;;:::o;35831:90::-;;35908:5;35901:13;35894:21;35883:32;;35873:48;;;:::o;35927:149::-;;36003:66;35996:5;35992:78;35981:89;;35971:105;;;:::o;36082:126::-;;36159:42;36152:5;36148:54;36137:65;;36127:81;;;:::o;36214:77::-;;36280:5;36269:16;;36259:32;;;:::o;36297:154::-;36381:6;36376:3;36371;36358:30;36443:1;36434:6;36429:3;36425:16;36418:27;36348:103;;;:::o;36457:307::-;36525:1;36535:113;36549:6;36546:1;36543:13;36535:113;;;36634:1;36629:3;36625:11;36619:18;36615:1;36610:3;36606:11;36599:39;36571:2;36568:1;36564:10;36559:15;;36535:113;;;36666:6;36663:1;36660:13;36657:2;;;36746:1;36737:6;36732:3;36728:16;36721:27;36657:2;36506:258;;;;:::o;36770:320::-;;36851:1;36845:4;36841:12;36831:22;;36898:1;36892:4;36888:12;36919:18;36909:2;;36975:4;36967:6;36963:17;36953:27;;36909:2;37037;37029:6;37026:14;37006:18;37003:38;37000:2;;;37056:18;;:::i;:::-;37000:2;36821:269;;;;:::o;37096:233::-;;37158:24;37176:5;37158:24;:::i;:::-;37149:33;;37204:66;37197:5;37194:77;37191:2;;;37274:18;;:::i;:::-;37191:2;37321:1;37314:5;37310:13;37303:20;;37139:190;;;:::o;37335:176::-;;37384:20;37402:1;37384:20;:::i;:::-;37379:25;;37418:20;37436:1;37418:20;:::i;:::-;37413:25;;37457:1;37447:2;;37462:18;;:::i;:::-;37447:2;37503:1;37500;37496:9;37491:14;;37369:142;;;;:::o;37517:180::-;37565:77;37562:1;37555:88;37662:4;37659:1;37652:15;37686:4;37683:1;37676:15;37703:180;37751:77;37748:1;37741:88;37848:4;37845:1;37838:15;37872:4;37869:1;37862:15;37889:180;37937:77;37934:1;37927:88;38034:4;38031:1;38024:15;38058:4;38055:1;38048:15;38075:180;38123:77;38120:1;38113:88;38220:4;38217:1;38210:15;38244:4;38241:1;38234:15;38261:102;;38353:2;38349:7;38344:2;38337:5;38333:14;38329:28;38319:38;;38309:54;;;:::o;38369:122::-;38442:24;38460:5;38442:24;:::i;:::-;38435:5;38432:35;38422:2;;38481:1;38478;38471:12;38422:2;38412:79;:::o;38497:116::-;38567:21;38582:5;38567:21;:::i;:::-;38560:5;38557:32;38547:2;;38603:1;38600;38593:12;38547:2;38537:76;:::o;38619:120::-;38691:23;38708:5;38691:23;:::i;:::-;38684:5;38681:34;38671:2;;38729:1;38726;38719:12;38671:2;38661:78;:::o;38745:122::-;38818:24;38836:5;38818:24;:::i;:::-;38811:5;38808:35;38798:2;;38857:1;38854;38847:12;38798:2;38788:79;:::o

Swarm Source

ipfs://a138187fb5e9dd1f76e8ff79905dda7a7dd7b96db6b54c8eefd487aec28d3787
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.