ETH Price: $3,253.27 (+2.45%)
Gas: 2 Gwei

Token

Awakened-Avatar (Avatar)
 

Overview

Max Total Supply

10,000 Avatar

Holders

581

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x7adaf0d9304ebb14adc16b5a813bf0e596243b73
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A new world order. Humans, Variants and Mutants combined in an NFT project like no other. Avatars require a MultiPass to mint or upgrade.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Avatar

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-30
*/

// SPDX-License-Identifier: MIT

pragma solidity >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

interface IAwkndBurn {
    function getTokenLevel(uint id) external view returns(uint8);
    function burn(address _owner, uint16 id) external;
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)


/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)


/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts v4.4.1


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)



/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)



/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// File: contracts/avatars/ERC1155.sol




/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    struct TokenInfo {
        uint8  level;
        uint8  reverse1;
        uint16 reverse2;
        uint32 amount;
        uint32 gearID;
        uint32 mintedAtTimestamp;
        uint32 cityID;
        uint32 personalID;
        uint32 randReceipt;
        uint32 reverse4;
    }

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => TokenInfo)) internal _balances;

    // Mapping from account to operator approvals
    mapping(address => mapping(address => bool)) internal _operatorApprovals;

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string internal _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC1155).interfaceId ||
            interfaceId == type(IERC1155MetadataURI).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account].amount;
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC1155-isApprovedForAll}.
     */
    function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[account][operator];
    }

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from].amount;
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from].amount = uint32(fromBalance - amount);
        }
        _balances[id][to].amount = uint32(uint(_balances[id][to].amount) + amount);

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from].amount;
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from].amount = uint32(fromBalance - amount);
            }
            _balances[id][to].amount = uint32(uint(_balances[id][to].amount) + amount);
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account].amount = uint32(uint(_balances[id][account].amount) + amount);
        _balances[id][account].mintedAtTimestamp = uint32(block.timestamp);
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to].amount = uint32(uint(_balances[ids[i]][to].amount) + amounts[i]);
            _balances[ids[i]][to].mintedAtTimestamp = uint32(block.timestamp);
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 accountBalance = _balances[id][account].amount;
        require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][account].amount = uint32(accountBalance - amount);
        }

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 accountBalance = _balances[id][account].amount;
            require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][account].amount = uint32(accountBalance - amount);
            }
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: contracts/avatars/Avatar.sol


contract Avatar is ERC1155, Ownable {
    using Address for address;
    
    struct NftToken {
      uint32 mintingStatus;
      uint32 totalSupply;
      uint32 currentMinted;        // set can be mint or not
      uint32 lockSupply;           // set to 1 lock the supply for life time, when lock, the supply won be changed again.
      uint32 maxSupply;            
      uint32 reserve1;
      uint32 reserve2;        
      uint32 reserve3;
    }

    NftToken public nftToken;
    address public immutable multipassAddress;
    mapping(address => bool) private defaultApprovals;

    event WithdrawEth(address indexed _operator, uint256 _ethWei);
    event SetMaxMintingPerTime(uint256 maxMintingPerTime);
    event DefaultApproval(address indexed operator, bool hasApproval);
    event Minted(uint indexed avatarID, uint indexed burnedMultipassID, address indexed to, uint initLevel, uint citySerial, uint personalSerial, uint randReceipt);
    event TokenUpgrade(uint indexed avatarID, address indexed owner, uint fromLevel, uint toLevel);
    event CityChanged(uint indexed avatarID, address operator, address holder, uint fromCityID, uint toCityID);
    event ApplyGear(uint indexed avatarID, address holder, uint oldGearID, uint newGearID);
    
    constructor(address _multipass) 
      ERC1155("")
    {
        nftToken.maxSupply = 100000;
        nftToken.totalSupply = 10000;
        nftToken.mintingStatus = 1;
        multipassAddress = _multipass;
        setDefaultApproval(_multipass, true);
        setDefaultApproval(owner(), true);
    }

    function name() public pure returns (string memory)
    {
        return "Awakened-Avatar";
    }

    function symbol() public pure returns (string memory)
    {
        return "Avatar";
    }

    function decimals() public view virtual  returns (uint256) 
    {  
        return 0;
    }

    function totalSupply() public view returns (uint)
    {
        return nftToken.totalSupply;
    }

    function currentMinted() public view returns(uint)
    {
        return nftToken.currentMinted;
    }

    function mintingStatus() public view returns(uint)
    {
        return nftToken.mintingStatus;
    }

    function tokenOf(address account, uint256 id) public view virtual returns (TokenInfo memory) {
       return _balances[id][account];
    }

    receive() external virtual payable { } 
    fallback() external virtual payable { }
    
    /* withdraw eth from owner */
    function withdraw(uint _amount) public onlyOwner
    {
        require(_amount <= address(this).balance, "exceed withdraw balance.");
        if (_amount == 0)
        {
            _amount = address(this).balance;
        }
        uint _devFee = _amount * 2 / 100;
        payable(0x2130C75caC9E1EF6381C6F354331B3049221391C).transfer(_devFee);
        payable(_msgSender()).transfer(_amount - _devFee);

        emit WithdrawEth(_msgSender(), _amount);
    }

    modifier canMint(address _addr, uint _number)
    {
        require(!_addr.isContract(), "Suspected Arbitrage");
        require(_addr == _msgSender() || isApprovedForAll(_addr, _msgSender()), "Access: Deny");
        require(nftToken.mintingStatus > 0, "Minting already stop now!");
        require(_number <= 255, "exceed the max minting limit per time");
        _;
    }

    function setDefaultApproval(address operator, bool hasApproval) public onlyOwner {
        defaultApprovals[operator] = hasApproval;
        emit DefaultApproval(operator, hasApproval);
    }

    function isApprovedForAll(address _owner, address _operator) public virtual override(ERC1155) view returns (bool) {
        return defaultApprovals[_operator] || super.isApprovedForAll(_owner, _operator);
    }

    function getTokenInfo(uint id, address _addr) public view returns(TokenInfo memory)
    {
        return _balances[id][_addr];
    }

    /* set Token URI */
    function setTokenURI(string calldata _uri, uint256 _id) external onlyOwner {
        emit URI(_uri, _id);
    }

    /* set status can be mint or not */
    function setMintingStatus(uint32 _status) public onlyOwner
    {
        nftToken.mintingStatus = _status;
    }

    /* can set total supply, but it can't never be exceed max supply */
    function setTotalSupply(uint32 _supply) external onlyOwner
    {
        require(nftToken.lockSupply == 0, "the supply has been locked for life time, cannot be changed");
        require(_supply <= nftToken.maxSupply, "exceed the max supply limited");
        nftToken.totalSupply = _supply;
    }

    /* when lock the supply, it won't be changed again! */
    function lockSupplyForLifeTime() external onlyOwner
    {
        nftToken.lockSupply = 1;
    }

    function setUri(string memory newuri) external onlyOwner
    {
        _setURI(newuri);
    }

    /* check token exist or not */
    function existsToken(address _addr, uint _id) public view returns(bool)
    {
        return _balances[_id][_addr].amount > 0;
    }

    /* 
      call from Multipass contract
    */
    function mintAvatar(address account, uint16[] memory multipassIds) public canMint(account, multipassIds.length)
    {
        uint number = multipassIds.length;
        
        uint32 _currentMintedID = nftToken.currentMinted;

        for (uint i = 0; i < number; i++)
        {
            uint8 level = IAwkndBurn(multipassAddress).getTokenLevel(multipassIds[i]);

            if (level > 0)
            {
                _balances[_currentMintedID][account].level = level;
                _balances[_currentMintedID][account].amount += 1;
                uint randReceipt = uint(keccak256(abi.encodePacked(block.timestamp, _currentMintedID, block.number, multipassIds[i], block.coinbase,  i)));
                uint secondHash = uint(keccak256(abi.encodePacked(randReceipt)));
                uint32 cityID = uint32(secondHash % 10000);
                _balances[_currentMintedID][account].cityID = cityID;
                uint32 personalID = uint32(uint(keccak256(abi.encodePacked(secondHash))) % 10000);
                _balances[_currentMintedID][account].personalID = personalID;
                randReceipt = randReceipt % 50000000;
                
                emit TransferSingle(account, address(0), account, _currentMintedID, 1);
                emit Minted(_currentMintedID, multipassIds[i], account, level, cityID, personalID, randReceipt);
                IAwkndBurn(multipassAddress).burn(account, multipassIds[i]);

                _currentMintedID += 1;
            }           
        }
        nftToken.currentMinted = _currentMintedID;

        require (nftToken.currentMinted  <= nftToken.totalSupply, "exceed the total supply limit");
    }

    /* 
      call from Multipass contract
    */
    function updateAvatar(address account, uint32[] memory avatarIds, uint16[] memory multipassIds) public canMint(account, multipassIds.length)
    {
        require(avatarIds.length == multipassIds.length, "avatar numbers must equal multipass numbers");
        
        uint number = multipassIds.length;

        for (uint i = 0; i < number; i++)
        {
            uint8 burnedMultipassLevel = IAwkndBurn(multipassAddress).getTokenLevel(multipassIds[i]);
            uint8 oldLevel = _balances[avatarIds[i]][account].level;
            if (burnedMultipassLevel > 0 && burnedMultipassLevel > oldLevel)
            {
                _balances[avatarIds[i]][account].level = burnedMultipassLevel;
                emit TokenUpgrade(avatarIds[i], account, oldLevel, burnedMultipassLevel);
                IAwkndBurn(multipassAddress).burn(account, multipassIds[i]);
            }           
        }
    }

    /* 
      call from user directly
    */
    function mintAvatar(uint16[] memory multipassIds) external
    {
        mintAvatar(_msgSender(), multipassIds);
    }

    /* 
      call from user directly
    */
    function updateAvatar(uint32[] memory avatarIds, uint16[] memory multipassIds) external
    {
        updateAvatar(_msgSender(), avatarIds, multipassIds);
    }

    function changeCity(uint32 avatarId, address holder, uint32 cityID) external
    {
        require(isApprovedForAll(holder, _msgSender()), "Access: Deny");
        require(existsToken(holder, avatarId), "Holder:did not own this token");
        uint32 oldCity = _balances[avatarId][holder].cityID;
        _balances[avatarId][holder].cityID = cityID;
        emit CityChanged(avatarId, _msgSender(), holder, oldCity, _balances[avatarId][holder].cityID);
    }

    function applyGear(uint32 avatarId, address holder, uint32 gearID) external
    {
        require(isApprovedForAll(holder, _msgSender()), "Access: Deny");
        require(existsToken(holder, avatarId), "Holder:did not own this token");
        require(_balances[avatarId][holder].level > 1, "Only when level > 1 can be applied Gear");
        uint32 oldGear = _balances[avatarId][holder].gearID;
        _balances[avatarId][holder].gearID = gearID;
        emit ApplyGear(avatarId, holder, oldGear, gearID);
    }

    /* 
       Batch Mint to different address in one time,
       NOTE: The max address count cannot excced 2500,
       Only owner can do this
    */
    /* 
       Batch Mint to different address in one time,
       NOTE: The max address count cannot excced 2500,
       Only owner can do this
    */
    function batchMint(address[] memory _addrs, uint8[] memory _levels) external virtual onlyOwner 
    {
        uint8 _number = uint8(_addrs.length);
        require(_number < 500, "exceed the max minting limit per time");
        require(_addrs.length == _levels.length, "address number must equal levels number");

        uint32 _currentMintedID = nftToken.currentMinted;

        for (uint8 i = 0; i < _number; i++)
        {
            _balances[_currentMintedID][_addrs[i]].amount += 1;

            emit TransferSingle(_msgSender(), address(0), _addrs[i], _currentMintedID, 1);
            uint randReceipt = uint(keccak256(abi.encodePacked(block.timestamp, _currentMintedID, block.number, block.coinbase, _levels[i], block.difficulty, i)));
            uint secondHash = uint(keccak256(abi.encodePacked(randReceipt)));
            _balances[_currentMintedID][_addrs[i]].level = _levels[i];
            _balances[_currentMintedID][_addrs[i]].cityID = uint32(secondHash % 10000);
            secondHash = uint(keccak256(abi.encodePacked(secondHash)));
            _balances[_currentMintedID][_addrs[i]].personalID = uint32(secondHash % 10000);
            _balances[_currentMintedID][_addrs[i]].randReceipt = uint32(randReceipt % 50000000);
            emit TransferSingle(_addrs[i], address(0), _addrs[i], _currentMintedID, 1);
            emit Minted(_currentMintedID, 0, _addrs[i], _levels[i], _balances[_currentMintedID][_addrs[i]].cityID, _balances[_currentMintedID][_addrs[i]].personalID, _balances[_currentMintedID][_addrs[i]].randReceipt);
            _currentMintedID += 1;
        }

        nftToken.currentMinted = _currentMintedID;

        require (nftToken.currentMinted <= nftToken.totalSupply, "exceed the total supply limit");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_multipass","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"avatarID","type":"uint256"},{"indexed":false,"internalType":"address","name":"holder","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldGearID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newGearID","type":"uint256"}],"name":"ApplyGear","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"uint256","name":"avatarID","type":"uint256"},{"indexed":false,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"address","name":"holder","type":"address"},{"indexed":false,"internalType":"uint256","name":"fromCityID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toCityID","type":"uint256"}],"name":"CityChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"hasApproval","type":"bool"}],"name":"DefaultApproval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"avatarID","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"burnedMultipassID","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"initLevel","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"citySerial","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"personalSerial","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"randReceipt","type":"uint256"}],"name":"Minted","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":"maxMintingPerTime","type":"uint256"}],"name":"SetMaxMintingPerTime","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"avatarID","type":"uint256"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"fromLevel","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toLevel","type":"uint256"}],"name":"TokenUpgrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":false,"internalType":"uint256","name":"_ethWei","type":"uint256"}],"name":"WithdrawEth","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"uint32","name":"avatarId","type":"uint32"},{"internalType":"address","name":"holder","type":"address"},{"internalType":"uint32","name":"gearID","type":"uint32"}],"name":"applyGear","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addrs","type":"address[]"},{"internalType":"uint8[]","name":"_levels","type":"uint8[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"avatarId","type":"uint32"},{"internalType":"address","name":"holder","type":"address"},{"internalType":"uint32","name":"cityID","type":"uint32"}],"name":"changeCity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"existsToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"_addr","type":"address"}],"name":"getTokenInfo","outputs":[{"components":[{"internalType":"uint8","name":"level","type":"uint8"},{"internalType":"uint8","name":"reverse1","type":"uint8"},{"internalType":"uint16","name":"reverse2","type":"uint16"},{"internalType":"uint32","name":"amount","type":"uint32"},{"internalType":"uint32","name":"gearID","type":"uint32"},{"internalType":"uint32","name":"mintedAtTimestamp","type":"uint32"},{"internalType":"uint32","name":"cityID","type":"uint32"},{"internalType":"uint32","name":"personalID","type":"uint32"},{"internalType":"uint32","name":"randReceipt","type":"uint32"},{"internalType":"uint32","name":"reverse4","type":"uint32"}],"internalType":"struct ERC1155.TokenInfo","name":"","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":[],"name":"lockSupplyForLifeTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16[]","name":"multipassIds","type":"uint16[]"}],"name":"mintAvatar","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint16[]","name":"multipassIds","type":"uint16[]"}],"name":"mintAvatar","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"multipassAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"nftToken","outputs":[{"internalType":"uint32","name":"mintingStatus","type":"uint32"},{"internalType":"uint32","name":"totalSupply","type":"uint32"},{"internalType":"uint32","name":"currentMinted","type":"uint32"},{"internalType":"uint32","name":"lockSupply","type":"uint32"},{"internalType":"uint32","name":"maxSupply","type":"uint32"},{"internalType":"uint32","name":"reserve1","type":"uint32"},{"internalType":"uint32","name":"reserve2","type":"uint32"},{"internalType":"uint32","name":"reserve3","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"hasApproval","type":"bool"}],"name":"setDefaultApproval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_status","type":"uint32"}],"name":"setMintingStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_supply","type":"uint32"}],"name":"setTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setUri","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":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokenOf","outputs":[{"components":[{"internalType":"uint8","name":"level","type":"uint8"},{"internalType":"uint8","name":"reverse1","type":"uint8"},{"internalType":"uint16","name":"reverse2","type":"uint16"},{"internalType":"uint32","name":"amount","type":"uint32"},{"internalType":"uint32","name":"gearID","type":"uint32"},{"internalType":"uint32","name":"mintedAtTimestamp","type":"uint32"},{"internalType":"uint32","name":"cityID","type":"uint32"},{"internalType":"uint32","name":"personalID","type":"uint32"},{"internalType":"uint32","name":"randReceipt","type":"uint32"},{"internalType":"uint32","name":"reverse4","type":"uint32"}],"internalType":"struct ERC1155.TokenInfo","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32[]","name":"avatarIds","type":"uint32[]"},{"internalType":"uint16[]","name":"multipassIds","type":"uint16[]"}],"name":"updateAvatar","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32[]","name":"avatarIds","type":"uint32[]"},{"internalType":"uint16[]","name":"multipassIds","type":"uint16[]"}],"name":"updateAvatar","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b5060405162004a7038038062004a7083398101604081905262000034916200029c565b6040805160208101909152600081526200004e81620000cd565b506200005a33620000e6565b600480546001600160401b0363ffffffff60801b011916720186a000000000000000000000271000000001179055606081901b6001600160601b031916608052620000a781600162000138565b620000c6620000be6003546001600160a01b031690565b600162000138565b506200030b565b8051620000e2906002906020840190620001f6565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6003546001600160a01b03163314620001975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b6001600160a01b038216600081815260056020908152604091829020805460ff191685151590811790915591519182527f270dbb8ba4292910ae92862466486be25c355c837270a3d8824b36a8bc7c653b910160405180910390a25050565b8280546200020490620002ce565b90600052602060002090601f01602090048101928262000228576000855562000273565b82601f106200024357805160ff191683800117855562000273565b8280016001018555821562000273579182015b828111156200027357825182559160200191906001019062000256565b506200028192915062000285565b5090565b5b8082111562000281576000815560010162000286565b600060208284031215620002af57600080fd5b81516001600160a01b0381168114620002c757600080fd5b9392505050565b600181811c90821680620002e357607f821691505b602082108114156200030557634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c61472a6200034660003960008181610a7501528181610de101528181610fd9015281816126b30152612ab7015261472a6000f3fe60806040526004361061022e5760003560e01c806379c352a711610126578063c58c14f8116100a7578063e58fda2411610079578063f242432a11610061578063f242432a14610a23578063f2fde38b14610a43578063fb2f494214610a6357005b8063e58fda24146109e3578063e985e9c514610a0357005b8063c58c14f81461077f578063ce541b1a1461079f578063d06fcba8146108f0578063d43ff1f8146109c357005b8063a22cb465116100f8578063a411104c116100e0578063a411104c146106f3578063b41695cb14610743578063b83855af1461075857005b8063a22cb46514610575578063a3dabb021461059557005b806379c352a7146104bd5780638da5cb5b146104dd57806395d89b411461050f5780639b642de11461055557005b80632e1a7d4d116101b057806338576f3d116101825780635552f3961161016a5780635552f396146104685780635d836a6b14610488578063715018a6146104a857005b806338576f3d1461041b5780634e1273f41461043b57005b80632e1a7d4d146103ac5780632eb2c2d6146103cc578063313ce567146103ec57806333abe5441461040057005b806309a3beef1161020157806318054c37116101e957806318054c371461034957806318160ddd146103695780631fc68a271461038c57005b806309a3beef146103095780630e89341c1461032957005b8062fdd58e1461023757806301ffc9a71461026a57806306fdde031461029a5780630779dd86146102e957005b3661023557005b005b34801561024357600080fd5b50610257610252366004613e28565b610a97565b6040519081526020015b60405180910390f35b34801561027657600080fd5b5061028a610285366004614018565b610b4e565b6040519015158152602001610261565b3480156102a657600080fd5b5060408051808201909152600f81527f4177616b656e65642d417661746172000000000000000000000000000000000060208201525b6040516102619190614363565b3480156102f557600080fd5b50610235610304366004613d78565b610beb565b34801561031557600080fd5b50610235610324366004614052565b6110a7565b34801561033557600080fd5b506102dc610344366004614113565b611140565b34801561035557600080fd5b50610235610364366004613dec565b6111d4565b34801561037557600080fd5b50600454640100000000900463ffffffff16610257565b34801561039857600080fd5b506102356103a736600461416a565b61128e565b3480156103b857600080fd5b506102356103c7366004614113565b61148f565b3480156103d857600080fd5b506102356103e7366004613c1b565b611608565b3480156103f857600080fd5b506000610257565b34801561040c57600080fd5b5060045463ffffffff16610257565b34801561042757600080fd5b50610235610436366004613fbe565b6116aa565b34801561044757600080fd5b5061045b610456366004613e52565b6116b9565b60405161026191906142f3565b34801561047457600080fd5b50610235610483366004613f81565b6117f7565b34801561049457600080fd5b506102356104a336600461416a565b611804565b3480156104b457600080fd5b50610235611975565b3480156104c957600080fd5b506102356104d8366004613eac565b6119db565b3480156104e957600080fd5b506003546001600160a01b03165b6040516001600160a01b039091168152602001610261565b34801561051b57600080fd5b5060408051808201909152600681527f417661746172000000000000000000000000000000000000000000000000000060208201526102dc565b34801561056157600080fd5b506102356105703660046140ca565b6122ad565b34801561058157600080fd5b50610235610590366004613dec565b612310565b3480156105a157600080fd5b506106e66105b0366004613e28565b6040805161014081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810191909152506000818152602081815260408083206001600160a01b0386168452825291829020825161014081018452905460ff80821683526101008083049091169383019390935261ffff620100008204169382019390935263ffffffff640100000000840481166060830152680100000000000000008404811660808301526c010000000000000000000000008404811660a0830152600160801b8404811660c0830152740100000000000000000000000000000000000000008404811660e0830152600160c01b8404811692820192909252600160e01b9092041661012082015292915050565b6040516102619190614376565b3480156106ff57600080fd5b5061028a61070e366004613e28565b6000908152602081815260408083206001600160a01b039490941683529290522054640100000000900463ffffffff16151590565b34801561074f57600080fd5b506102356123fb565b34801561076457600080fd5b5060045468010000000000000000900463ffffffff16610257565b34801561078b57600080fd5b5061023561079a36600461414f565b61248e565b3480156107ab57600080fd5b506106e66107ba36600461412c565b6040805161014081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810191909152506000828152602081815260408083206001600160a01b0385168452825291829020825161014081018452905460ff80821683526101008083049091169383019390935261ffff620100008204169382019390935263ffffffff640100000000840481166060830152680100000000000000008404811660808301526c010000000000000000000000008404811660a0830152600160801b8404811660c0830152740100000000000000000000000000000000000000008404811660e0830152600160c01b8404811692820192909252600160e01b9092041661012082015292915050565b3480156108fc57600080fd5b506004546109749063ffffffff8082169164010000000081048216916801000000000000000082048116916c010000000000000000000000008104821691600160801b8204811691740100000000000000000000000000000000000000008104821691600160c01b8204811691600160e01b90041688565b6040805163ffffffff998a16815297891660208901529588169587019590955292861660608601529085166080850152841660a0840152831660c083015290911660e082015261010001610261565b3480156109cf57600080fd5b506102356109de366004613d2a565b61251f565b3480156109ef57600080fd5b506102356109fe36600461414f565b612c20565b348015610a0f57600080fd5b5061028a610a1e366004613be8565b612d91565b348015610a2f57600080fd5b50610235610a3e366004613cc5565b612de4565b348015610a4f57600080fd5b50610235610a5e366004613bcd565b612e7f565b348015610a6f57600080fd5b506104f77f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160a01b038316610b1a5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b039490941683529290522054640100000000900463ffffffff1690565b60006001600160e01b031982167fd9b67a26000000000000000000000000000000000000000000000000000000001480610bb157506001600160e01b031982167f0e89341c00000000000000000000000000000000000000000000000000000000145b80610be557507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b828151610c01826001600160a01b03163b151590565b15610c4e5760405162461bcd60e51b815260206004820152601360248201527f53757370656374656420417262697472616765000000000000000000000000006044820152606401610b11565b6001600160a01b038216331480610c6a5750610c6a8233612d91565b610ca55760405162461bcd60e51b815260206004820152600c60248201526b4163636573733a2044656e7960a01b6044820152606401610b11565b60045463ffffffff16610cfa5760405162461bcd60e51b815260206004820152601960248201527f4d696e74696e6720616c72656164792073746f70206e6f7721000000000000006044820152606401610b11565b60ff811115610d595760405162461bcd60e51b815260206004820152602560248201527f65786365656420746865206d6178206d696e74696e67206c696d6974207065726044820152642074696d6560d81b6064820152608401610b11565b8251845114610dd05760405162461bcd60e51b815260206004820152602b60248201527f617661746172206e756d62657273206d75737420657175616c206d756c74697060448201527f617373206e756d626572730000000000000000000000000000000000000000006064820152608401610b11565b825160005b8181101561109e5760007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d011645c878481518110610e2057610e206145df565b60200260200101516040518263ffffffff1660e01b8152600401610e4e919061ffff91909116815260200190565b60206040518083038186803b158015610e6657600080fd5b505afa158015610e7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9e91906141ad565b90506000806000898581518110610eb757610eb76145df565b60209081029190910181015163ffffffff16825281810192909252604090810160009081206001600160a01b038d16825290925290205460ff9081169150821615801590610f0a57508060ff168260ff16115b1561108957816000808a8681518110610f2557610f256145df565b60209081029190910181015163ffffffff16825281810192909252604090810160009081206001600160a01b038e16808352935220805460ff191660ff93909316929092179091558851899085908110610f8157610f816145df565b602002602001015163ffffffff167f2c2ae3e61b508b533899a61e3b46538a7505555b115a30b2a132f613647361bf8385604051610fcf92919060ff92831681529116602082015260400190565b60405180910390a37f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d55f2d9d8a898681518110611019576110196145df565b60200260200101516040518363ffffffff1660e01b81526004016110569291906001600160a01b0392909216825261ffff16602082015260400190565b600060405180830381600087803b15801561107057600080fd5b505af1158015611084573d6000803e3d6000fd5b505050505b5050808061109690614564565b915050610dd5565b50505050505050565b6003546001600160a01b031633146111015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b11565b807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b8484604051611133929190614334565b60405180910390a2505050565b60606002805461114f906144fc565b80601f016020809104026020016040519081016040528092919081815260200182805461117b906144fc565b80156111c85780601f1061119d576101008083540402835291602001916111c8565b820191906000526020600020905b8154815290600101906020018083116111ab57829003601f168201915b50505050509050919050565b6003546001600160a01b0316331461122e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b11565b6001600160a01b038216600081815260056020908152604091829020805460ff191685151590811790915591519182527f270dbb8ba4292910ae92862466486be25c355c837270a3d8824b36a8bc7c653b91015b60405180910390a25050565b6112988233612d91565b6112d35760405162461bcd60e51b815260206004820152600c60248201526b4163636573733a2044656e7960a01b6044820152606401610b11565b63ffffffff8084166000908152602081815260408083206001600160a01b03871684529091529020546401000000009004166113515760405162461bcd60e51b815260206004820152601d60248201527f486f6c6465723a646964206e6f74206f776e207468697320746f6b656e0000006044820152606401610b11565b63ffffffff83166000908152602081815260408083206001600160a01b0386168452909152902054600160ff909116116113f35760405162461bcd60e51b815260206004820152602760248201527f4f6e6c79207768656e206c6576656c203e20312063616e206265206170706c6960448201527f65642047656172000000000000000000000000000000000000000000000000006064820152608401610b11565b63ffffffff8381166000818152602081815260408083206001600160a01b038816808552908352928190208054878716680100000000000000008181026bffffffff00000000000000001984161790935583519586529190049095169183018290528201939093527fe3fdbc6a53796425286d4701dd5bccd4ab718ea83d24472781f9b5a4dbd20073906060015b60405180910390a250505050565b6003546001600160a01b031633146114e95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b11565b478111156115395760405162461bcd60e51b815260206004820152601860248201527f6578636565642077697468647261772062616c616e63652e00000000000000006044820152606401610b11565b806115415750475b600060646115508360026144c6565b61155a91906144b2565b604051909150732130c75cac9e1ef6381c6f354331b3049221391c9082156108fc029083906000818181858888f1935050505015801561159e573d6000803e3d6000fd5b50336108fc6115ad83856144e5565b6040518115909202916000818181858888f193505050501580156115d5573d6000803e3d6000fd5b5060405182815233907fccbd99ba6da8f29b2a4f65e474e3c3973564d356c162c08d45f3dc7f0cb5b3aa90602001611282565b6001600160a01b03851633148061162457506116248533612d91565b6116965760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610b11565b6116a38585858585612f5e565b5050505050565b6116b5338383610beb565b5050565b606081518351146117325760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d6174636800000000000000000000000000000000000000000000006064820152608401610b11565b6000835167ffffffffffffffff81111561174e5761174e6145f5565b604051908082528060200260200182016040528015611777578160200160208202803683370190505b50905060005b84518110156117ef576117c285828151811061179b5761179b6145df565b60200260200101518583815181106117b5576117b56145df565b6020026020010151610a97565b8282815181106117d4576117d46145df565b60209081029190910101526117e881614564565b905061177d565b509392505050565b611801338261251f565b50565b61180e8233612d91565b6118495760405162461bcd60e51b815260206004820152600c60248201526b4163636573733a2044656e7960a01b6044820152606401610b11565b63ffffffff8084166000908152602081815260408083206001600160a01b03871684529091529020546401000000009004166118c75760405162461bcd60e51b815260206004820152601d60248201527f486f6c6465723a646964206e6f74206f776e207468697320746f6b656e0000006044820152606401610b11565b63ffffffff8381166000818152602081815260408083206001600160a01b038816808552908352928190208054878716600160801b9081027fffffffffffffffffffffffff00000000ffffffffffffffffffffffffffffffff831617928390558351338152948501959095528490048616918301829052929092049093166060840152917fd3b30c34613c08b0190005f6c784f91fa2f6dd50a7ed5df0967f8669b57ee2a190608001611481565b6003546001600160a01b031633146119cf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b11565b6119d96000613262565b565b6003546001600160a01b03163314611a355760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b11565b81516101f460ff821610611a995760405162461bcd60e51b815260206004820152602560248201527f65786365656420746865206d6178206d696e74696e67206c696d6974207065726044820152642074696d6560d81b6064820152608401610b11565b8151835114611b105760405162461bcd60e51b815260206004820152602760248201527f61646472657373206e756d626572206d75737420657175616c206c6576656c7360448201527f206e756d626572000000000000000000000000000000000000000000000000006064820152608401610b11565b60045468010000000000000000900463ffffffff1660005b8260ff168160ff16101561221c5760016000808463ffffffff1681526020019081526020016000206000878460ff1681518110611b6757611b676145df565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060000160048282829054906101000a900463ffffffff16611bb0919061448a565b92506101000a81548163ffffffff021916908363ffffffff160217905550848160ff1681518110611be357611be36145df565b60200260200101516001600160a01b031660006001600160a01b0316611c063390565b6040805163ffffffff87168152600160208201526001600160a01b0392909216917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4600042834341888660ff1681518110611c6d57611c6d6145df565b60200260200101514487604051602001611d08979695949392919096875260e09590951b6001600160e01b0319166020870152602486019390935260609190911b6bffffffffffffffffffffffff1916604485015260f890811b7fff00000000000000000000000000000000000000000000000000000000000000908116605886015260598501929092529190911b166079820152607a0190565b60408051808303601f1901815282825280516020918201209083018190529250600091016040516020818303038152906040528051906020012060001c9050858360ff1681518110611d5c57611d5c6145df565b60200260200101516000808663ffffffff1681526020019081526020016000206000898660ff1681518110611d9357611d936145df565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191660ff92909216919091179055611dd46127108261459f565b6000808663ffffffff1681526020019081526020016000206000898660ff1681518110611e0357611e036145df565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060000160106101000a81548163ffffffff021916908363ffffffff16021790555080604051602001611e5f91815260200190565b60408051601f1981840301815291905280516020909101209050611e856127108261459f565b6000808663ffffffff1681526020019081526020016000206000898660ff1681518110611eb457611eb46145df565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060000160146101000a81548163ffffffff021916908363ffffffff1602179055506302faf08082611f0d919061459f565b6000808663ffffffff1681526020019081526020016000206000898660ff1681518110611f3c57611f3c6145df565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060000160186101000a81548163ffffffff021916908363ffffffff160217905550868360ff1681518110611f9a57611f9a6145df565b60200260200101516001600160a01b031660006001600160a01b0316888560ff1681518110611fcb57611fcb6145df565b60200260200101516001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287600160405161201f92919063ffffffff929092168252602082015260400190565b60405180910390a4868360ff168151811061203c5761203c6145df565b60200260200101516001600160a01b031660008563ffffffff167fa4bad3e450460bf527278831240a1d95cd7a6cb94a5d654f01b1a0d7128421f1898760ff168151811061208c5761208c6145df565b60200260200101516000808a63ffffffff16815260200190815260200160002060008d8a60ff16815181106120c3576120c36145df565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060000160109054906101000a900463ffffffff166000808b63ffffffff16815260200190815260200160002060008e8b60ff168151811061212e5761212e6145df565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060000160149054906101000a900463ffffffff166000808c63ffffffff16815260200190815260200160002060008f8c60ff1681518110612199576121996145df565b6020908102919091018101516001600160a01b0316825281810192909252604090810160002054815160ff909616865263ffffffff9485169286019290925291831691840191909152600160c01b900416606082015260800160405180910390a461220560018561448a565b9350505080806122149061457f565b915050611b28565b50600480546bffffffff000000000000000019166801000000000000000063ffffffff848116820292909217928390556401000000008304821692041611156122a75760405162461bcd60e51b815260206004820152601d60248201527f6578636565642074686520746f74616c20737570706c79206c696d69740000006044820152606401610b11565b50505050565b6003546001600160a01b031633146123075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b11565b611801816132cc565b336001600160a01b038316141561238f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610b11565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6003546001600160a01b031633146124555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b11565b600480547fffffffffffffffffffffffffffffffff00000000ffffffffffffffffffffffff166c01000000000000000000000000179055565b6003546001600160a01b031633146124e85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b11565b600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001663ffffffff92909216919091179055565b818151612535826001600160a01b03163b151590565b156125825760405162461bcd60e51b815260206004820152601360248201527f53757370656374656420417262697472616765000000000000000000000000006044820152606401610b11565b6001600160a01b03821633148061259e575061259e8233612d91565b6125d95760405162461bcd60e51b815260206004820152600c60248201526b4163636573733a2044656e7960a01b6044820152606401610b11565b60045463ffffffff1661262e5760405162461bcd60e51b815260206004820152601960248201527f4d696e74696e6720616c72656164792073746f70206e6f7721000000000000006044820152606401610b11565b60ff81111561268d5760405162461bcd60e51b815260206004820152602560248201527f65786365656420746865206d6178206d696e74696e67206c696d6974207065726044820152642074696d6560d81b6064820152608401610b11565b825160045468010000000000000000900463ffffffff1660005b82811015612b8d5760007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d011645c8884815181106126f2576126f26145df565b60200260200101516040518263ffffffff1660e01b8152600401612720919061ffff91909116815260200190565b60206040518083038186803b15801561273857600080fd5b505afa15801561274c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061277091906141ad565b905060ff811615612b7a5763ffffffff8381166000908152602081815260408083206001600160a01b038d1684529091529020805460ff191660ff8416178082556001926004916127cb91859164010000000090041661448a565b92506101000a81548163ffffffff021916908363ffffffff16021790555060004284438a8681518110612800576128006145df565b602002602001015141876040516020016128869695949392919095865260e09490941b6001600160e01b0319166020860152602485019290925260f01b7fffff00000000000000000000000000000000000000000000000000000000000016604484015260601b6bffffffffffffffffffffffff19166046830152605a820152607a0190565b60408051601f198184030181528282528051602091820120818401819052825180850383018152938301909252825192019190912090915060006128cc6127108361459f565b9050806000808863ffffffff16815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060000160106101000a81548163ffffffff021916908363ffffffff16021790555060006127108360405160200161294391815260200190565b6040516020818303038152906040528051906020012060001c612966919061459f565b9050806000808963ffffffff16815260200190815260200160002060008e6001600160a01b03166001600160a01b0316815260200190815260200160002060000160146101000a81548163ffffffff021916908363ffffffff1602179055506302faf080846129d5919061459f565b6040805163ffffffff8a168152600160208201529195506001600160a01b038e169160009183917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a48b6001600160a01b03168b8781518110612a4357612a436145df565b602002602001015161ffff168863ffffffff167fa4bad3e450460bf527278831240a1d95cd7a6cb94a5d654f01b1a0d7128421f18886868a604051612aad949392919060ff94909416845263ffffffff928316602085015291166040830152606082015260800190565b60405180910390a47f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d55f2d9d8d8d8981518110612af757612af76145df565b60200260200101516040518363ffffffff1660e01b8152600401612b349291906001600160a01b0392909216825261ffff16602082015260400190565b600060405180830381600087803b158015612b4e57600080fd5b505af1158015612b62573d6000803e3d6000fd5b50505050600187612b73919061448a565b9650505050505b5080612b8581614564565b9150506126a7565b50600480546bffffffff000000000000000019166801000000000000000063ffffffff84811682029290921792839055640100000000830482169204161115612c185760405162461bcd60e51b815260206004820152601d60248201527f6578636565642074686520746f74616c20737570706c79206c696d69740000006044820152606401610b11565b505050505050565b6003546001600160a01b03163314612c7a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b11565b6004546c01000000000000000000000000900463ffffffff1615612d065760405162461bcd60e51b815260206004820152603b60248201527f74686520737570706c7920686173206265656e206c6f636b656420666f72206c60448201527f6966652074696d652c2063616e6e6f74206265206368616e67656400000000006064820152608401610b11565b60045463ffffffff600160801b90910481169082161115612d695760405162461bcd60e51b815260206004820152601d60248201527f65786365656420746865206d617820737570706c79206c696d697465640000006044820152606401610b11565b6004805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b6001600160a01b03811660009081526005602052604081205460ff1680612ddd57506001600160a01b0380841660009081526001602090815260408083209386168352929052205460ff165b9392505050565b6001600160a01b038516331480612e005750612e008533612d91565b612e725760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f76656400000000000000000000000000000000000000000000006064820152608401610b11565b6116a385858585856132df565b6003546001600160a01b03163314612ed95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b11565b6001600160a01b038116612f555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b11565b61180181613262565b8151835114612fd55760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610b11565b6001600160a01b0384166130515760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610b11565b3360005b84518110156131fc576000858281518110613072576130726145df565b602002602001015190506000858381518110613090576130906145df565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150640100000000900463ffffffff16818110156131445760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610b11565b6000838152602081815260408083206001600160a01b038e811685529252808320805467ffffffff00000000191664010000000087870363ffffffff908116820292909217909255928d1684529220546131a2928592910416614472565b6000938452602084815260408086206001600160a01b038d168752909152909320805463ffffffff949094166401000000000267ffffffff000000001990941693909317909255506131f5905081614564565b9050613055565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161324c929190614306565b60405180910390a4612c1881878787878761350c565b600380546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80516116b59060029060208401906138a5565b6001600160a01b03841661335b5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610b11565b3361337481878761336b88613708565b6116a388613708565b6000848152602081815260408083206001600160a01b038a168452909152902054640100000000900463ffffffff16838110156134195760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610b11565b6000858152602081815260408083206001600160a01b038b811685529252808320805467ffffffff00000000191664010000000089870363ffffffff908116820292909217909255928a168452922054613477928792910416614472565b6000868152602081815260408083206001600160a01b038b811680865291845293829020805463ffffffff969096166401000000000267ffffffff00000000199096169590951790945580518981529182018890528a8316928616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461109e828888888888613753565b6001600160a01b0384163b15612c18576040517fbc197c810000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063bc197c81906135699089908990889088908890600401614252565b602060405180830381600087803b15801561358357600080fd5b505af19250505080156135b3575060408051601f3d908101601f191682019092526135b091810190614035565b60015b613669576135bf61460b565b806308c379a014156135f957506135d4614627565b806135df57506135fb565b8060405162461bcd60e51b8152600401610b119190614363565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610b11565b6001600160e01b031981167fbc197c81000000000000000000000000000000000000000000000000000000001461109e5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610b11565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110613742576137426145df565b602090810291909101015292915050565b6001600160a01b0384163b15612c18576040517ff23a6e610000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063f23a6e61906137b090899089908890889088906004016142b0565b602060405180830381600087803b1580156137ca57600080fd5b505af19250505080156137fa575060408051601f3d908101601f191682019092526137f791810190614035565b60015b613806576135bf61460b565b6001600160e01b031981167ff23a6e61000000000000000000000000000000000000000000000000000000001461109e5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610b11565b8280546138b1906144fc565b90600052602060002090601f0160209004810192826138d35760008555613919565b82601f106138ec57805160ff1916838001178555613919565b82800160010185558215613919579182015b828111156139195782518255916020019190600101906138fe565b50613925929150613929565b5090565b5b80821115613925576000815560010161392a565b600067ffffffffffffffff831115613958576139586145f5565b60405161396f6020601f19601f8701160182614537565b80915083815284848401111561398457600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b03811681146139b357600080fd5b919050565b600082601f8301126139c957600080fd5b813560206139d68261444e565b6040516139e38282614537565b8381528281019150858301600585901b87018401881015613a0357600080fd5b60005b85811015613a2957613a178261399c565b84529284019290840190600101613a06565b5090979650505050505050565b600082601f830112613a4757600080fd5b81356020613a548261444e565b604051613a618282614537565b8381528281019150858301600585901b87018401881015613a8157600080fd5b6000805b86811015613ab057823561ffff81168114613a9e578283fd5b85529385019391850191600101613a85565b509198975050505050505050565b600082601f830112613acf57600080fd5b81356020613adc8261444e565b604051613ae98282614537565b8381528281019150858301600585901b87018401881015613b0957600080fd5b60005b85811015613a2957813584529284019290840190600101613b0c565b600082601f830112613b3957600080fd5b81356020613b468261444e565b604051613b538282614537565b8381528281019150858301600585901b87018401881015613b7357600080fd5b60005b85811015613a2957613b8782613bb9565b84529284019290840190600101613b76565b600082601f830112613baa57600080fd5b612ddd8383356020850161393e565b803563ffffffff811681146139b357600080fd5b600060208284031215613bdf57600080fd5b612ddd8261399c565b60008060408385031215613bfb57600080fd5b613c048361399c565b9150613c126020840161399c565b90509250929050565b600080600080600060a08688031215613c3357600080fd5b613c3c8661399c565b9450613c4a6020870161399c565b9350604086013567ffffffffffffffff80821115613c6757600080fd5b613c7389838a01613abe565b94506060880135915080821115613c8957600080fd5b613c9589838a01613abe565b93506080880135915080821115613cab57600080fd5b50613cb888828901613b99565b9150509295509295909350565b600080600080600060a08688031215613cdd57600080fd5b613ce68661399c565b9450613cf46020870161399c565b93506040860135925060608601359150608086013567ffffffffffffffff811115613d1e57600080fd5b613cb888828901613b99565b60008060408385031215613d3d57600080fd5b613d468361399c565b9150602083013567ffffffffffffffff811115613d6257600080fd5b613d6e85828601613a36565b9150509250929050565b600080600060608486031215613d8d57600080fd5b613d968461399c565b9250602084013567ffffffffffffffff80821115613db357600080fd5b613dbf87838801613b28565b93506040860135915080821115613dd557600080fd5b50613de286828701613a36565b9150509250925092565b60008060408385031215613dff57600080fd5b613e088361399c565b915060208301358015158114613e1d57600080fd5b809150509250929050565b60008060408385031215613e3b57600080fd5b613e448361399c565b946020939093013593505050565b60008060408385031215613e6557600080fd5b823567ffffffffffffffff80821115613e7d57600080fd5b613e89868387016139b8565b93506020850135915080821115613e9f57600080fd5b50613d6e85828601613abe565b60008060408385031215613ebf57600080fd5b823567ffffffffffffffff80821115613ed757600080fd5b613ee3868387016139b8565b9350602091508185013581811115613efa57600080fd5b85019050601f81018613613f0d57600080fd5b8035613f188161444e565b604051613f258282614537565b8281528481019150838501600584901b850186018a1015613f4557600080fd5b600094505b83851015613f71578035613f5d816146e5565b835260019490940193918501918501613f4a565b5080955050505050509250929050565b600060208284031215613f9357600080fd5b813567ffffffffffffffff811115613faa57600080fd5b613fb684828501613a36565b949350505050565b60008060408385031215613fd157600080fd5b823567ffffffffffffffff80821115613fe957600080fd5b613ff586838701613b28565b9350602085013591508082111561400b57600080fd5b50613d6e85828601613a36565b60006020828403121561402a57600080fd5b8135612ddd816146cf565b60006020828403121561404757600080fd5b8151612ddd816146cf565b60008060006040848603121561406757600080fd5b833567ffffffffffffffff8082111561407f57600080fd5b818601915086601f83011261409357600080fd5b8135818111156140a257600080fd5b8760208285010111156140b457600080fd5b6020928301989097509590910135949350505050565b6000602082840312156140dc57600080fd5b813567ffffffffffffffff8111156140f357600080fd5b8201601f8101841361410457600080fd5b613fb68482356020840161393e565b60006020828403121561412557600080fd5b5035919050565b6000806040838503121561413f57600080fd5b82359150613c126020840161399c565b60006020828403121561416157600080fd5b612ddd82613bb9565b60008060006060848603121561417f57600080fd5b61418884613bb9565b92506141966020850161399c565b91506141a460408501613bb9565b90509250925092565b6000602082840312156141bf57600080fd5b8151612ddd816146e5565b600081518084526020808501945080840160005b838110156141fa578151875295820195908201906001016141de565b509495945050505050565b6000815180845260005b8181101561422b5760208185018101518683018201520161420f565b8181111561423d576000602083870101525b50601f01601f19169290920160200192915050565b60006001600160a01b03808816835280871660208401525060a0604083015261427e60a08301866141ca565b828103606084015261429081866141ca565b905082810360808401526142a48185614205565b98975050505050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a060808301526142e860a0830184614205565b979650505050505050565b602081526000612ddd60208301846141ca565b60408152600061431960408301856141ca565b828103602084015261432b81856141ca565b95945050505050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b602081526000612ddd6020830184614205565b815160ff16815261014081016020830151614396602084018260ff169052565b5060408301516143ac604084018261ffff169052565b5060608301516143c4606084018263ffffffff169052565b5060808301516143dc608084018263ffffffff169052565b5060a08301516143f460a084018263ffffffff169052565b5060c083015161440c60c084018263ffffffff169052565b5060e083015161442460e084018263ffffffff169052565b506101008381015163ffffffff908116918401919091526101209384015116929091019190915290565b600067ffffffffffffffff821115614468576144686145f5565b5060051b60200190565b60008219821115614485576144856145b3565b500190565b600063ffffffff8083168185168083038211156144a9576144a96145b3565b01949350505050565b6000826144c1576144c16145c9565b500490565b60008160001904831182151516156144e0576144e06145b3565b500290565b6000828210156144f7576144f76145b3565b500390565b600181811c9082168061451057607f821691505b6020821081141561453157634e487b7160e01b600052602260045260246000fd5b50919050565b601f19601f830116810181811067ffffffffffffffff8211171561455d5761455d6145f5565b6040525050565b6000600019821415614578576145786145b3565b5060010190565b600060ff821660ff811415614596576145966145b3565b60010192915050565b6000826145ae576145ae6145c9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156146245760046000803e5060005160e01c5b90565b600060443d10156146355790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff816024840111818411171561468357505050505090565b828501915081518181111561469b5750505050505090565b843d87010160208285010111156146b55750505050505090565b6146c460208286010187614537565b509095945050505050565b6001600160e01b03198116811461180157600080fd5b60ff8116811461180157600080fdfea264697066735822122008fd2fec58291294830d8940a9103d7335079d002fa9075815370e974796dbb364736f6c6343000807003300000000000000000000000031ae5109e5adb582f4f42ca9aaa9a723a325f214

Deployed Bytecode

0x60806040526004361061022e5760003560e01c806379c352a711610126578063c58c14f8116100a7578063e58fda2411610079578063f242432a11610061578063f242432a14610a23578063f2fde38b14610a43578063fb2f494214610a6357005b8063e58fda24146109e3578063e985e9c514610a0357005b8063c58c14f81461077f578063ce541b1a1461079f578063d06fcba8146108f0578063d43ff1f8146109c357005b8063a22cb465116100f8578063a411104c116100e0578063a411104c146106f3578063b41695cb14610743578063b83855af1461075857005b8063a22cb46514610575578063a3dabb021461059557005b806379c352a7146104bd5780638da5cb5b146104dd57806395d89b411461050f5780639b642de11461055557005b80632e1a7d4d116101b057806338576f3d116101825780635552f3961161016a5780635552f396146104685780635d836a6b14610488578063715018a6146104a857005b806338576f3d1461041b5780634e1273f41461043b57005b80632e1a7d4d146103ac5780632eb2c2d6146103cc578063313ce567146103ec57806333abe5441461040057005b806309a3beef1161020157806318054c37116101e957806318054c371461034957806318160ddd146103695780631fc68a271461038c57005b806309a3beef146103095780630e89341c1461032957005b8062fdd58e1461023757806301ffc9a71461026a57806306fdde031461029a5780630779dd86146102e957005b3661023557005b005b34801561024357600080fd5b50610257610252366004613e28565b610a97565b6040519081526020015b60405180910390f35b34801561027657600080fd5b5061028a610285366004614018565b610b4e565b6040519015158152602001610261565b3480156102a657600080fd5b5060408051808201909152600f81527f4177616b656e65642d417661746172000000000000000000000000000000000060208201525b6040516102619190614363565b3480156102f557600080fd5b50610235610304366004613d78565b610beb565b34801561031557600080fd5b50610235610324366004614052565b6110a7565b34801561033557600080fd5b506102dc610344366004614113565b611140565b34801561035557600080fd5b50610235610364366004613dec565b6111d4565b34801561037557600080fd5b50600454640100000000900463ffffffff16610257565b34801561039857600080fd5b506102356103a736600461416a565b61128e565b3480156103b857600080fd5b506102356103c7366004614113565b61148f565b3480156103d857600080fd5b506102356103e7366004613c1b565b611608565b3480156103f857600080fd5b506000610257565b34801561040c57600080fd5b5060045463ffffffff16610257565b34801561042757600080fd5b50610235610436366004613fbe565b6116aa565b34801561044757600080fd5b5061045b610456366004613e52565b6116b9565b60405161026191906142f3565b34801561047457600080fd5b50610235610483366004613f81565b6117f7565b34801561049457600080fd5b506102356104a336600461416a565b611804565b3480156104b457600080fd5b50610235611975565b3480156104c957600080fd5b506102356104d8366004613eac565b6119db565b3480156104e957600080fd5b506003546001600160a01b03165b6040516001600160a01b039091168152602001610261565b34801561051b57600080fd5b5060408051808201909152600681527f417661746172000000000000000000000000000000000000000000000000000060208201526102dc565b34801561056157600080fd5b506102356105703660046140ca565b6122ad565b34801561058157600080fd5b50610235610590366004613dec565b612310565b3480156105a157600080fd5b506106e66105b0366004613e28565b6040805161014081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810191909152506000818152602081815260408083206001600160a01b0386168452825291829020825161014081018452905460ff80821683526101008083049091169383019390935261ffff620100008204169382019390935263ffffffff640100000000840481166060830152680100000000000000008404811660808301526c010000000000000000000000008404811660a0830152600160801b8404811660c0830152740100000000000000000000000000000000000000008404811660e0830152600160c01b8404811692820192909252600160e01b9092041661012082015292915050565b6040516102619190614376565b3480156106ff57600080fd5b5061028a61070e366004613e28565b6000908152602081815260408083206001600160a01b039490941683529290522054640100000000900463ffffffff16151590565b34801561074f57600080fd5b506102356123fb565b34801561076457600080fd5b5060045468010000000000000000900463ffffffff16610257565b34801561078b57600080fd5b5061023561079a36600461414f565b61248e565b3480156107ab57600080fd5b506106e66107ba36600461412c565b6040805161014081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810191909152506000828152602081815260408083206001600160a01b0385168452825291829020825161014081018452905460ff80821683526101008083049091169383019390935261ffff620100008204169382019390935263ffffffff640100000000840481166060830152680100000000000000008404811660808301526c010000000000000000000000008404811660a0830152600160801b8404811660c0830152740100000000000000000000000000000000000000008404811660e0830152600160c01b8404811692820192909252600160e01b9092041661012082015292915050565b3480156108fc57600080fd5b506004546109749063ffffffff8082169164010000000081048216916801000000000000000082048116916c010000000000000000000000008104821691600160801b8204811691740100000000000000000000000000000000000000008104821691600160c01b8204811691600160e01b90041688565b6040805163ffffffff998a16815297891660208901529588169587019590955292861660608601529085166080850152841660a0840152831660c083015290911660e082015261010001610261565b3480156109cf57600080fd5b506102356109de366004613d2a565b61251f565b3480156109ef57600080fd5b506102356109fe36600461414f565b612c20565b348015610a0f57600080fd5b5061028a610a1e366004613be8565b612d91565b348015610a2f57600080fd5b50610235610a3e366004613cc5565b612de4565b348015610a4f57600080fd5b50610235610a5e366004613bcd565b612e7f565b348015610a6f57600080fd5b506104f77f00000000000000000000000031ae5109e5adb582f4f42ca9aaa9a723a325f21481565b60006001600160a01b038316610b1a5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b039490941683529290522054640100000000900463ffffffff1690565b60006001600160e01b031982167fd9b67a26000000000000000000000000000000000000000000000000000000001480610bb157506001600160e01b031982167f0e89341c00000000000000000000000000000000000000000000000000000000145b80610be557507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b828151610c01826001600160a01b03163b151590565b15610c4e5760405162461bcd60e51b815260206004820152601360248201527f53757370656374656420417262697472616765000000000000000000000000006044820152606401610b11565b6001600160a01b038216331480610c6a5750610c6a8233612d91565b610ca55760405162461bcd60e51b815260206004820152600c60248201526b4163636573733a2044656e7960a01b6044820152606401610b11565b60045463ffffffff16610cfa5760405162461bcd60e51b815260206004820152601960248201527f4d696e74696e6720616c72656164792073746f70206e6f7721000000000000006044820152606401610b11565b60ff811115610d595760405162461bcd60e51b815260206004820152602560248201527f65786365656420746865206d6178206d696e74696e67206c696d6974207065726044820152642074696d6560d81b6064820152608401610b11565b8251845114610dd05760405162461bcd60e51b815260206004820152602b60248201527f617661746172206e756d62657273206d75737420657175616c206d756c74697060448201527f617373206e756d626572730000000000000000000000000000000000000000006064820152608401610b11565b825160005b8181101561109e5760007f00000000000000000000000031ae5109e5adb582f4f42ca9aaa9a723a325f2146001600160a01b031663d011645c878481518110610e2057610e206145df565b60200260200101516040518263ffffffff1660e01b8152600401610e4e919061ffff91909116815260200190565b60206040518083038186803b158015610e6657600080fd5b505afa158015610e7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9e91906141ad565b90506000806000898581518110610eb757610eb76145df565b60209081029190910181015163ffffffff16825281810192909252604090810160009081206001600160a01b038d16825290925290205460ff9081169150821615801590610f0a57508060ff168260ff16115b1561108957816000808a8681518110610f2557610f256145df565b60209081029190910181015163ffffffff16825281810192909252604090810160009081206001600160a01b038e16808352935220805460ff191660ff93909316929092179091558851899085908110610f8157610f816145df565b602002602001015163ffffffff167f2c2ae3e61b508b533899a61e3b46538a7505555b115a30b2a132f613647361bf8385604051610fcf92919060ff92831681529116602082015260400190565b60405180910390a37f00000000000000000000000031ae5109e5adb582f4f42ca9aaa9a723a325f2146001600160a01b031663d55f2d9d8a898681518110611019576110196145df565b60200260200101516040518363ffffffff1660e01b81526004016110569291906001600160a01b0392909216825261ffff16602082015260400190565b600060405180830381600087803b15801561107057600080fd5b505af1158015611084573d6000803e3d6000fd5b505050505b5050808061109690614564565b915050610dd5565b50505050505050565b6003546001600160a01b031633146111015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b11565b807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b8484604051611133929190614334565b60405180910390a2505050565b60606002805461114f906144fc565b80601f016020809104026020016040519081016040528092919081815260200182805461117b906144fc565b80156111c85780601f1061119d576101008083540402835291602001916111c8565b820191906000526020600020905b8154815290600101906020018083116111ab57829003601f168201915b50505050509050919050565b6003546001600160a01b0316331461122e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b11565b6001600160a01b038216600081815260056020908152604091829020805460ff191685151590811790915591519182527f270dbb8ba4292910ae92862466486be25c355c837270a3d8824b36a8bc7c653b91015b60405180910390a25050565b6112988233612d91565b6112d35760405162461bcd60e51b815260206004820152600c60248201526b4163636573733a2044656e7960a01b6044820152606401610b11565b63ffffffff8084166000908152602081815260408083206001600160a01b03871684529091529020546401000000009004166113515760405162461bcd60e51b815260206004820152601d60248201527f486f6c6465723a646964206e6f74206f776e207468697320746f6b656e0000006044820152606401610b11565b63ffffffff83166000908152602081815260408083206001600160a01b0386168452909152902054600160ff909116116113f35760405162461bcd60e51b815260206004820152602760248201527f4f6e6c79207768656e206c6576656c203e20312063616e206265206170706c6960448201527f65642047656172000000000000000000000000000000000000000000000000006064820152608401610b11565b63ffffffff8381166000818152602081815260408083206001600160a01b038816808552908352928190208054878716680100000000000000008181026bffffffff00000000000000001984161790935583519586529190049095169183018290528201939093527fe3fdbc6a53796425286d4701dd5bccd4ab718ea83d24472781f9b5a4dbd20073906060015b60405180910390a250505050565b6003546001600160a01b031633146114e95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b11565b478111156115395760405162461bcd60e51b815260206004820152601860248201527f6578636565642077697468647261772062616c616e63652e00000000000000006044820152606401610b11565b806115415750475b600060646115508360026144c6565b61155a91906144b2565b604051909150732130c75cac9e1ef6381c6f354331b3049221391c9082156108fc029083906000818181858888f1935050505015801561159e573d6000803e3d6000fd5b50336108fc6115ad83856144e5565b6040518115909202916000818181858888f193505050501580156115d5573d6000803e3d6000fd5b5060405182815233907fccbd99ba6da8f29b2a4f65e474e3c3973564d356c162c08d45f3dc7f0cb5b3aa90602001611282565b6001600160a01b03851633148061162457506116248533612d91565b6116965760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610b11565b6116a38585858585612f5e565b5050505050565b6116b5338383610beb565b5050565b606081518351146117325760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d6174636800000000000000000000000000000000000000000000006064820152608401610b11565b6000835167ffffffffffffffff81111561174e5761174e6145f5565b604051908082528060200260200182016040528015611777578160200160208202803683370190505b50905060005b84518110156117ef576117c285828151811061179b5761179b6145df565b60200260200101518583815181106117b5576117b56145df565b6020026020010151610a97565b8282815181106117d4576117d46145df565b60209081029190910101526117e881614564565b905061177d565b509392505050565b611801338261251f565b50565b61180e8233612d91565b6118495760405162461bcd60e51b815260206004820152600c60248201526b4163636573733a2044656e7960a01b6044820152606401610b11565b63ffffffff8084166000908152602081815260408083206001600160a01b03871684529091529020546401000000009004166118c75760405162461bcd60e51b815260206004820152601d60248201527f486f6c6465723a646964206e6f74206f776e207468697320746f6b656e0000006044820152606401610b11565b63ffffffff8381166000818152602081815260408083206001600160a01b038816808552908352928190208054878716600160801b9081027fffffffffffffffffffffffff00000000ffffffffffffffffffffffffffffffff831617928390558351338152948501959095528490048616918301829052929092049093166060840152917fd3b30c34613c08b0190005f6c784f91fa2f6dd50a7ed5df0967f8669b57ee2a190608001611481565b6003546001600160a01b031633146119cf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b11565b6119d96000613262565b565b6003546001600160a01b03163314611a355760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b11565b81516101f460ff821610611a995760405162461bcd60e51b815260206004820152602560248201527f65786365656420746865206d6178206d696e74696e67206c696d6974207065726044820152642074696d6560d81b6064820152608401610b11565b8151835114611b105760405162461bcd60e51b815260206004820152602760248201527f61646472657373206e756d626572206d75737420657175616c206c6576656c7360448201527f206e756d626572000000000000000000000000000000000000000000000000006064820152608401610b11565b60045468010000000000000000900463ffffffff1660005b8260ff168160ff16101561221c5760016000808463ffffffff1681526020019081526020016000206000878460ff1681518110611b6757611b676145df565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060000160048282829054906101000a900463ffffffff16611bb0919061448a565b92506101000a81548163ffffffff021916908363ffffffff160217905550848160ff1681518110611be357611be36145df565b60200260200101516001600160a01b031660006001600160a01b0316611c063390565b6040805163ffffffff87168152600160208201526001600160a01b0392909216917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4600042834341888660ff1681518110611c6d57611c6d6145df565b60200260200101514487604051602001611d08979695949392919096875260e09590951b6001600160e01b0319166020870152602486019390935260609190911b6bffffffffffffffffffffffff1916604485015260f890811b7fff00000000000000000000000000000000000000000000000000000000000000908116605886015260598501929092529190911b166079820152607a0190565b60408051808303601f1901815282825280516020918201209083018190529250600091016040516020818303038152906040528051906020012060001c9050858360ff1681518110611d5c57611d5c6145df565b60200260200101516000808663ffffffff1681526020019081526020016000206000898660ff1681518110611d9357611d936145df565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191660ff92909216919091179055611dd46127108261459f565b6000808663ffffffff1681526020019081526020016000206000898660ff1681518110611e0357611e036145df565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060000160106101000a81548163ffffffff021916908363ffffffff16021790555080604051602001611e5f91815260200190565b60408051601f1981840301815291905280516020909101209050611e856127108261459f565b6000808663ffffffff1681526020019081526020016000206000898660ff1681518110611eb457611eb46145df565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060000160146101000a81548163ffffffff021916908363ffffffff1602179055506302faf08082611f0d919061459f565b6000808663ffffffff1681526020019081526020016000206000898660ff1681518110611f3c57611f3c6145df565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060000160186101000a81548163ffffffff021916908363ffffffff160217905550868360ff1681518110611f9a57611f9a6145df565b60200260200101516001600160a01b031660006001600160a01b0316888560ff1681518110611fcb57611fcb6145df565b60200260200101516001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287600160405161201f92919063ffffffff929092168252602082015260400190565b60405180910390a4868360ff168151811061203c5761203c6145df565b60200260200101516001600160a01b031660008563ffffffff167fa4bad3e450460bf527278831240a1d95cd7a6cb94a5d654f01b1a0d7128421f1898760ff168151811061208c5761208c6145df565b60200260200101516000808a63ffffffff16815260200190815260200160002060008d8a60ff16815181106120c3576120c36145df565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060000160109054906101000a900463ffffffff166000808b63ffffffff16815260200190815260200160002060008e8b60ff168151811061212e5761212e6145df565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060000160149054906101000a900463ffffffff166000808c63ffffffff16815260200190815260200160002060008f8c60ff1681518110612199576121996145df565b6020908102919091018101516001600160a01b0316825281810192909252604090810160002054815160ff909616865263ffffffff9485169286019290925291831691840191909152600160c01b900416606082015260800160405180910390a461220560018561448a565b9350505080806122149061457f565b915050611b28565b50600480546bffffffff000000000000000019166801000000000000000063ffffffff848116820292909217928390556401000000008304821692041611156122a75760405162461bcd60e51b815260206004820152601d60248201527f6578636565642074686520746f74616c20737570706c79206c696d69740000006044820152606401610b11565b50505050565b6003546001600160a01b031633146123075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b11565b611801816132cc565b336001600160a01b038316141561238f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610b11565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6003546001600160a01b031633146124555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b11565b600480547fffffffffffffffffffffffffffffffff00000000ffffffffffffffffffffffff166c01000000000000000000000000179055565b6003546001600160a01b031633146124e85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b11565b600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001663ffffffff92909216919091179055565b818151612535826001600160a01b03163b151590565b156125825760405162461bcd60e51b815260206004820152601360248201527f53757370656374656420417262697472616765000000000000000000000000006044820152606401610b11565b6001600160a01b03821633148061259e575061259e8233612d91565b6125d95760405162461bcd60e51b815260206004820152600c60248201526b4163636573733a2044656e7960a01b6044820152606401610b11565b60045463ffffffff1661262e5760405162461bcd60e51b815260206004820152601960248201527f4d696e74696e6720616c72656164792073746f70206e6f7721000000000000006044820152606401610b11565b60ff81111561268d5760405162461bcd60e51b815260206004820152602560248201527f65786365656420746865206d6178206d696e74696e67206c696d6974207065726044820152642074696d6560d81b6064820152608401610b11565b825160045468010000000000000000900463ffffffff1660005b82811015612b8d5760007f00000000000000000000000031ae5109e5adb582f4f42ca9aaa9a723a325f2146001600160a01b031663d011645c8884815181106126f2576126f26145df565b60200260200101516040518263ffffffff1660e01b8152600401612720919061ffff91909116815260200190565b60206040518083038186803b15801561273857600080fd5b505afa15801561274c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061277091906141ad565b905060ff811615612b7a5763ffffffff8381166000908152602081815260408083206001600160a01b038d1684529091529020805460ff191660ff8416178082556001926004916127cb91859164010000000090041661448a565b92506101000a81548163ffffffff021916908363ffffffff16021790555060004284438a8681518110612800576128006145df565b602002602001015141876040516020016128869695949392919095865260e09490941b6001600160e01b0319166020860152602485019290925260f01b7fffff00000000000000000000000000000000000000000000000000000000000016604484015260601b6bffffffffffffffffffffffff19166046830152605a820152607a0190565b60408051601f198184030181528282528051602091820120818401819052825180850383018152938301909252825192019190912090915060006128cc6127108361459f565b9050806000808863ffffffff16815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060000160106101000a81548163ffffffff021916908363ffffffff16021790555060006127108360405160200161294391815260200190565b6040516020818303038152906040528051906020012060001c612966919061459f565b9050806000808963ffffffff16815260200190815260200160002060008e6001600160a01b03166001600160a01b0316815260200190815260200160002060000160146101000a81548163ffffffff021916908363ffffffff1602179055506302faf080846129d5919061459f565b6040805163ffffffff8a168152600160208201529195506001600160a01b038e169160009183917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a48b6001600160a01b03168b8781518110612a4357612a436145df565b602002602001015161ffff168863ffffffff167fa4bad3e450460bf527278831240a1d95cd7a6cb94a5d654f01b1a0d7128421f18886868a604051612aad949392919060ff94909416845263ffffffff928316602085015291166040830152606082015260800190565b60405180910390a47f00000000000000000000000031ae5109e5adb582f4f42ca9aaa9a723a325f2146001600160a01b031663d55f2d9d8d8d8981518110612af757612af76145df565b60200260200101516040518363ffffffff1660e01b8152600401612b349291906001600160a01b0392909216825261ffff16602082015260400190565b600060405180830381600087803b158015612b4e57600080fd5b505af1158015612b62573d6000803e3d6000fd5b50505050600187612b73919061448a565b9650505050505b5080612b8581614564565b9150506126a7565b50600480546bffffffff000000000000000019166801000000000000000063ffffffff84811682029290921792839055640100000000830482169204161115612c185760405162461bcd60e51b815260206004820152601d60248201527f6578636565642074686520746f74616c20737570706c79206c696d69740000006044820152606401610b11565b505050505050565b6003546001600160a01b03163314612c7a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b11565b6004546c01000000000000000000000000900463ffffffff1615612d065760405162461bcd60e51b815260206004820152603b60248201527f74686520737570706c7920686173206265656e206c6f636b656420666f72206c60448201527f6966652074696d652c2063616e6e6f74206265206368616e67656400000000006064820152608401610b11565b60045463ffffffff600160801b90910481169082161115612d695760405162461bcd60e51b815260206004820152601d60248201527f65786365656420746865206d617820737570706c79206c696d697465640000006044820152606401610b11565b6004805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b6001600160a01b03811660009081526005602052604081205460ff1680612ddd57506001600160a01b0380841660009081526001602090815260408083209386168352929052205460ff165b9392505050565b6001600160a01b038516331480612e005750612e008533612d91565b612e725760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f76656400000000000000000000000000000000000000000000006064820152608401610b11565b6116a385858585856132df565b6003546001600160a01b03163314612ed95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b11565b6001600160a01b038116612f555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b11565b61180181613262565b8151835114612fd55760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610b11565b6001600160a01b0384166130515760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610b11565b3360005b84518110156131fc576000858281518110613072576130726145df565b602002602001015190506000858381518110613090576130906145df565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150640100000000900463ffffffff16818110156131445760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610b11565b6000838152602081815260408083206001600160a01b038e811685529252808320805467ffffffff00000000191664010000000087870363ffffffff908116820292909217909255928d1684529220546131a2928592910416614472565b6000938452602084815260408086206001600160a01b038d168752909152909320805463ffffffff949094166401000000000267ffffffff000000001990941693909317909255506131f5905081614564565b9050613055565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161324c929190614306565b60405180910390a4612c1881878787878761350c565b600380546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80516116b59060029060208401906138a5565b6001600160a01b03841661335b5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610b11565b3361337481878761336b88613708565b6116a388613708565b6000848152602081815260408083206001600160a01b038a168452909152902054640100000000900463ffffffff16838110156134195760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610b11565b6000858152602081815260408083206001600160a01b038b811685529252808320805467ffffffff00000000191664010000000089870363ffffffff908116820292909217909255928a168452922054613477928792910416614472565b6000868152602081815260408083206001600160a01b038b811680865291845293829020805463ffffffff969096166401000000000267ffffffff00000000199096169590951790945580518981529182018890528a8316928616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461109e828888888888613753565b6001600160a01b0384163b15612c18576040517fbc197c810000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063bc197c81906135699089908990889088908890600401614252565b602060405180830381600087803b15801561358357600080fd5b505af19250505080156135b3575060408051601f3d908101601f191682019092526135b091810190614035565b60015b613669576135bf61460b565b806308c379a014156135f957506135d4614627565b806135df57506135fb565b8060405162461bcd60e51b8152600401610b119190614363565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610b11565b6001600160e01b031981167fbc197c81000000000000000000000000000000000000000000000000000000001461109e5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610b11565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110613742576137426145df565b602090810291909101015292915050565b6001600160a01b0384163b15612c18576040517ff23a6e610000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063f23a6e61906137b090899089908890889088906004016142b0565b602060405180830381600087803b1580156137ca57600080fd5b505af19250505080156137fa575060408051601f3d908101601f191682019092526137f791810190614035565b60015b613806576135bf61460b565b6001600160e01b031981167ff23a6e61000000000000000000000000000000000000000000000000000000001461109e5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610b11565b8280546138b1906144fc565b90600052602060002090601f0160209004810192826138d35760008555613919565b82601f106138ec57805160ff1916838001178555613919565b82800160010185558215613919579182015b828111156139195782518255916020019190600101906138fe565b50613925929150613929565b5090565b5b80821115613925576000815560010161392a565b600067ffffffffffffffff831115613958576139586145f5565b60405161396f6020601f19601f8701160182614537565b80915083815284848401111561398457600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b03811681146139b357600080fd5b919050565b600082601f8301126139c957600080fd5b813560206139d68261444e565b6040516139e38282614537565b8381528281019150858301600585901b87018401881015613a0357600080fd5b60005b85811015613a2957613a178261399c565b84529284019290840190600101613a06565b5090979650505050505050565b600082601f830112613a4757600080fd5b81356020613a548261444e565b604051613a618282614537565b8381528281019150858301600585901b87018401881015613a8157600080fd5b6000805b86811015613ab057823561ffff81168114613a9e578283fd5b85529385019391850191600101613a85565b509198975050505050505050565b600082601f830112613acf57600080fd5b81356020613adc8261444e565b604051613ae98282614537565b8381528281019150858301600585901b87018401881015613b0957600080fd5b60005b85811015613a2957813584529284019290840190600101613b0c565b600082601f830112613b3957600080fd5b81356020613b468261444e565b604051613b538282614537565b8381528281019150858301600585901b87018401881015613b7357600080fd5b60005b85811015613a2957613b8782613bb9565b84529284019290840190600101613b76565b600082601f830112613baa57600080fd5b612ddd8383356020850161393e565b803563ffffffff811681146139b357600080fd5b600060208284031215613bdf57600080fd5b612ddd8261399c565b60008060408385031215613bfb57600080fd5b613c048361399c565b9150613c126020840161399c565b90509250929050565b600080600080600060a08688031215613c3357600080fd5b613c3c8661399c565b9450613c4a6020870161399c565b9350604086013567ffffffffffffffff80821115613c6757600080fd5b613c7389838a01613abe565b94506060880135915080821115613c8957600080fd5b613c9589838a01613abe565b93506080880135915080821115613cab57600080fd5b50613cb888828901613b99565b9150509295509295909350565b600080600080600060a08688031215613cdd57600080fd5b613ce68661399c565b9450613cf46020870161399c565b93506040860135925060608601359150608086013567ffffffffffffffff811115613d1e57600080fd5b613cb888828901613b99565b60008060408385031215613d3d57600080fd5b613d468361399c565b9150602083013567ffffffffffffffff811115613d6257600080fd5b613d6e85828601613a36565b9150509250929050565b600080600060608486031215613d8d57600080fd5b613d968461399c565b9250602084013567ffffffffffffffff80821115613db357600080fd5b613dbf87838801613b28565b93506040860135915080821115613dd557600080fd5b50613de286828701613a36565b9150509250925092565b60008060408385031215613dff57600080fd5b613e088361399c565b915060208301358015158114613e1d57600080fd5b809150509250929050565b60008060408385031215613e3b57600080fd5b613e448361399c565b946020939093013593505050565b60008060408385031215613e6557600080fd5b823567ffffffffffffffff80821115613e7d57600080fd5b613e89868387016139b8565b93506020850135915080821115613e9f57600080fd5b50613d6e85828601613abe565b60008060408385031215613ebf57600080fd5b823567ffffffffffffffff80821115613ed757600080fd5b613ee3868387016139b8565b9350602091508185013581811115613efa57600080fd5b85019050601f81018613613f0d57600080fd5b8035613f188161444e565b604051613f258282614537565b8281528481019150838501600584901b850186018a1015613f4557600080fd5b600094505b83851015613f71578035613f5d816146e5565b835260019490940193918501918501613f4a565b5080955050505050509250929050565b600060208284031215613f9357600080fd5b813567ffffffffffffffff811115613faa57600080fd5b613fb684828501613a36565b949350505050565b60008060408385031215613fd157600080fd5b823567ffffffffffffffff80821115613fe957600080fd5b613ff586838701613b28565b9350602085013591508082111561400b57600080fd5b50613d6e85828601613a36565b60006020828403121561402a57600080fd5b8135612ddd816146cf565b60006020828403121561404757600080fd5b8151612ddd816146cf565b60008060006040848603121561406757600080fd5b833567ffffffffffffffff8082111561407f57600080fd5b818601915086601f83011261409357600080fd5b8135818111156140a257600080fd5b8760208285010111156140b457600080fd5b6020928301989097509590910135949350505050565b6000602082840312156140dc57600080fd5b813567ffffffffffffffff8111156140f357600080fd5b8201601f8101841361410457600080fd5b613fb68482356020840161393e565b60006020828403121561412557600080fd5b5035919050565b6000806040838503121561413f57600080fd5b82359150613c126020840161399c565b60006020828403121561416157600080fd5b612ddd82613bb9565b60008060006060848603121561417f57600080fd5b61418884613bb9565b92506141966020850161399c565b91506141a460408501613bb9565b90509250925092565b6000602082840312156141bf57600080fd5b8151612ddd816146e5565b600081518084526020808501945080840160005b838110156141fa578151875295820195908201906001016141de565b509495945050505050565b6000815180845260005b8181101561422b5760208185018101518683018201520161420f565b8181111561423d576000602083870101525b50601f01601f19169290920160200192915050565b60006001600160a01b03808816835280871660208401525060a0604083015261427e60a08301866141ca565b828103606084015261429081866141ca565b905082810360808401526142a48185614205565b98975050505050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a060808301526142e860a0830184614205565b979650505050505050565b602081526000612ddd60208301846141ca565b60408152600061431960408301856141ca565b828103602084015261432b81856141ca565b95945050505050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b602081526000612ddd6020830184614205565b815160ff16815261014081016020830151614396602084018260ff169052565b5060408301516143ac604084018261ffff169052565b5060608301516143c4606084018263ffffffff169052565b5060808301516143dc608084018263ffffffff169052565b5060a08301516143f460a084018263ffffffff169052565b5060c083015161440c60c084018263ffffffff169052565b5060e083015161442460e084018263ffffffff169052565b506101008381015163ffffffff908116918401919091526101209384015116929091019190915290565b600067ffffffffffffffff821115614468576144686145f5565b5060051b60200190565b60008219821115614485576144856145b3565b500190565b600063ffffffff8083168185168083038211156144a9576144a96145b3565b01949350505050565b6000826144c1576144c16145c9565b500490565b60008160001904831182151516156144e0576144e06145b3565b500290565b6000828210156144f7576144f76145b3565b500390565b600181811c9082168061451057607f821691505b6020821081141561453157634e487b7160e01b600052602260045260246000fd5b50919050565b601f19601f830116810181811067ffffffffffffffff8211171561455d5761455d6145f5565b6040525050565b6000600019821415614578576145786145b3565b5060010190565b600060ff821660ff811415614596576145966145b3565b60010192915050565b6000826145ae576145ae6145c9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156146245760046000803e5060005160e01c5b90565b600060443d10156146355790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff816024840111818411171561468357505050505090565b828501915081518181111561469b5750505050505090565b843d87010160208285010111156146b55750505050505090565b6146c460208286010187614537565b509095945050505050565b6001600160e01b03198116811461180157600080fd5b60ff8116811461180157600080fdfea264697066735822122008fd2fec58291294830d8940a9103d7335079d002fa9075815370e974796dbb364736f6c63430008070033

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

00000000000000000000000031ae5109e5adb582f4f42ca9aaa9a723a325f214

-----Decoded View---------------
Arg [0] : _multipass (address): 0x31aE5109E5ADB582F4F42cA9AAA9a723a325f214

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000031ae5109e5adb582f4f42ca9aaa9a723a325f214


Deployed Bytecode Sourcemap

37182:11350:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23396:238;;;;;;;;;;-1:-1:-1;23396:238:0;;;;;:::i;:::-;;:::i;:::-;;;32371:25:1;;;32359:2;32344:18;23396:238:0;;;;;;;;22419:310;;;;;;;;;;-1:-1:-1;22419:310:0;;;;;:::i;:::-;;:::i;:::-;;;20549:14:1;;20542:22;20524:41;;20512:2;20497:18;22419:310:0;20384:187:1;38787:100:0;;;;;;;;;;-1:-1:-1;38855:24:0;;;;;;;;;;;;;;;;;38787:100;;;;;;;:::i;44103:922::-;;;;;;;;;;-1:-1:-1;44103:922:0;;;;;:::i;:::-;;:::i;41169:113::-;;;;;;;;;;-1:-1:-1;41169:113:0;;;;;:::i;:::-;;:::i;23140:105::-;;;;;;;;;;-1:-1:-1;23140:105:0;;;;;:::i;:::-;;:::i;40579:194::-;;;;;;;;;;-1:-1:-1;40579:194:0;;;;;:::i;:::-;;:::i;39098:101::-;;;;;;;;;;-1:-1:-1;39171:8:0;:20;;;;;;39098:101;;45903:521;;;;;;;;;;-1:-1:-1;45903:521:0;;;;;:::i;:::-;;:::i;39710:472::-;;;;;;;;;;-1:-1:-1;39710:472:0;;;;;:::i;:::-;;:::i;25498:442::-;;;;;;;;;;-1:-1:-1;25498:442:0;;;;;:::i;:::-;;:::i;38996:94::-;;;;;;;;;;-1:-1:-1;39046:7:0;38996:94;;39319:104;;;;;;;;;;-1:-1:-1;39393:8:0;:22;;;39319:104;;45258:163;;;;;;;;;;-1:-1:-1;45258:163:0;;;;;:::i;:::-;;:::i;23800:524::-;;;;;;;;;;-1:-1:-1;23800:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45081:121::-;;;;;;;;;;-1:-1:-1;45081:121:0;;;;;:::i;:::-;;:::i;45429:466::-;;;;;;;;;;-1:-1:-1;45429:466:0;;;;;:::i;:::-;;:::i;2811:103::-;;;;;;;;;;;;;:::i;46746:1783::-;;;;;;;;;;-1:-1:-1;46746:1783:0;;;;;:::i;:::-;;:::i;2160:87::-;;;;;;;;;;-1:-1:-1;2233:6:0;;-1:-1:-1;;;;;2233:6:0;2160:87;;;-1:-1:-1;;;;;16888:55:1;;;16870:74;;16858:2;16843:18;2160:87:0;16724:226:1;38895:93:0;;;;;;;;;;-1:-1:-1;38965:15:0;;;;;;;;;;;;;;;;;38895:93;;42004:96;;;;;;;;;;-1:-1:-1;42004:96:0;;;;;:::i;:::-;;:::i;24397:311::-;;;;;;;;;;-1:-1:-1;24397:311:0;;;;;:::i;:::-;;:::i;39431:140::-;;;;;;;;;;-1:-1:-1;39431:140:0;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39541:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;39541:22:0;;;;;;;;;;39534:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;39534:29:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;39534:29:0;;;;;;;;;;;-1:-1:-1;;;39534:29:0;;;;;;;;39431:140;;;;;;;;;;;;:::i;42144:135::-;;;;;;;;;;-1:-1:-1;42144:135:0;;;;;:::i;:::-;42210:4;42239:14;;;;;;;;;;;-1:-1:-1;;;;;42239:21:0;;;;;;;;;;:28;;;;;;:32;;;42144:135;41897:99;;;;;;;;;;;;;:::i;39207:104::-;;;;;;;;;;-1:-1:-1;39281:8:0;:22;;;;;;39207:104;;41331:115;;;;;;;;;;-1:-1:-1;41331:115:0;;;;;:::i;:::-;;:::i;41001:135::-;;;;;;;;;;-1:-1:-1;41001:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41108:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;41108:20:0;;;;;;;;;;41101:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;41101:27:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;41101:27:0;;;;;;;;;;;-1:-1:-1;;;41101:27:0;;;;;;;;41001:135;;;;;37653:24;;;;;;;;;;-1:-1:-1;37653:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;37653:24:0;;;;;;;;;;;-1:-1:-1;;;37653:24:0;;;;;-1:-1:-1;;;37653:24:0;;;;;;;;;33274:10:1;33311:15;;;33293:34;;33363:15;;;33358:2;33343:18;;33336:43;33415:15;;;33395:18;;;33388:43;;;;33467:15;;;33462:2;33447:18;;33440:43;33520:15;;;33514:3;33499:19;;33492:44;33573:15;;33567:3;33552:19;;33545:44;33626:15;;33620:3;33605:19;;33598:44;33679:15;;;33673:3;33658:19;;33651:44;33251:3;33236:19;37653:24:0;32937:764:1;42340:1702:0;;;;;;;;;;-1:-1:-1;42340:1702:0;;;;;:::i;:::-;;:::i;41527:302::-;;;;;;;;;;-1:-1:-1;41527:302:0;;;;;:::i;:::-;;:::i;40781:212::-;;;;;;;;;;-1:-1:-1;40781:212:0;;;;;:::i;:::-;;:::i;25020:401::-;;;;;;;;;;-1:-1:-1;25020:401:0;;;;;:::i;:::-;;:::i;3069:201::-;;;;;;;;;;-1:-1:-1;3069:201:0;;;;;:::i;:::-;;:::i;37684:41::-;;;;;;;;;;;;;;;23396:238;23482:7;-1:-1:-1;;;;;23510:21:0;;23502:77;;;;-1:-1:-1;;;23502:77:0;;22644:2:1;23502:77:0;;;22626:21:1;22683:2;22663:18;;;22656:30;22722:34;22702:18;;;22695:62;22793:13;22773:18;;;22766:41;22824:19;;23502:77:0;;;;;;;;;-1:-1:-1;23597:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;23597:22:0;;;;;;;;;;:29;;;;;;;23396:238::o;22419:310::-;22521:4;-1:-1:-1;;;;;;22558:41:0;;22573:26;22558:41;;:110;;-1:-1:-1;;;;;;;22616:52:0;;22631:37;22616:52;22558:110;:163;;;-1:-1:-1;13606:25:0;-1:-1:-1;;;;;;13591:40:0;;;22685:36;22538:183;22419:310;-1:-1:-1;;22419:310:0:o;44103:922::-;44214:7;44223:12;:19;40261:18;:5;-1:-1:-1;;;;;40261:16:0;4744:20;4792:8;;;4421:387;40261:18;40260:19;40252:51;;;;-1:-1:-1;;;40252:51:0;;28118:2:1;40252:51:0;;;28100:21:1;28157:2;28137:18;;;28130:30;28196:21;28176:18;;;28169:49;28235:18;;40252:51:0;27916:343:1;40252:51:0;-1:-1:-1;;;;;40322:21:0;;991:10;40322:21;;:62;;-1:-1:-1;40347:37:0;40364:5;991:10;40781:212;:::i;40347:37::-;40314:87;;;;-1:-1:-1;;;40314:87:0;;23056:2:1;40314:87:0;;;23038:21:1;23095:2;23075:18;;;23068:30;-1:-1:-1;;;23114:18:1;;;23107:42;23166:18;;40314:87:0;22854:336:1;40314:87:0;40420:8;:22;;;40412:64;;;;-1:-1:-1;;;40412:64:0;;27764:2:1;40412:64:0;;;27746:21:1;27803:2;27783:18;;;27776:30;27842:27;27822:18;;;27815:55;27887:18;;40412:64:0;27562:349:1;40412:64:0;40506:3;40495:7;:14;;40487:64;;;;-1:-1:-1;;;40487:64:0;;27358:2:1;40487:64:0;;;27340:21:1;27397:2;27377:18;;;27370:30;27436:34;27416:18;;;27409:62;-1:-1:-1;;;27487:18:1;;;27480:35;27532:19;;40487:64:0;27156:401:1;40487:64:0;44288:12:::1;:19;44268:9;:16;:39;44260:95;;;::::0;-1:-1:-1;;;44260:95:0;;30053:2:1;44260:95:0::1;::::0;::::1;30035:21:1::0;30092:2;30072:18;;;30065:30;30131:34;30111:18;;;30104:62;30202:13;30182:18;;;30175:41;30233:19;;44260:95:0::1;29851:407:1::0;44260:95:0::1;44390:19:::0;;44376:11:::1;44422:596;44443:6;44439:1;:10;44422:596;;;44480:26;44520:16;-1:-1:-1::0;;;;;44509:42:0::1;;44552:12;44565:1;44552:15;;;;;;;;:::i;:::-;;;;;;;44509:59;;;;;;;;;;;;;;32206:6:1::0;32194:19;;;;32176:38;;32164:2;32149:18;;32031:189;44509:59:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44480:88;;44583:14;44600:9:::0;:23:::1;44610:9;44620:1;44610:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;44600:23:::1;;::::0;;;;::::1;::::0;;;;;;;;-1:-1:-1;44600:23:0;;;-1:-1:-1;;;;;44600:32:0;::::1;::::0;;;;;;;:38;::::1;::::0;;::::1;::::0;-1:-1:-1;44657:24:0;::::1;::::0;;;;:59:::1;;;44708:8;44685:31;;:20;:31;;;44657:59;44653:343;;;44791:20;44750:9;:23:::0;44760:9:::1;44770:1;44760:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;44750:23:::1;;::::0;;;;::::1;::::0;;;;;;;;-1:-1:-1;44750:23:0;;;-1:-1:-1;;;;;44750:32:0;::::1;::::0;;;;;;:61;;-1:-1:-1;;44750:61:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;;44848:12;;;;44858:1;;44848:12;::::1;;;;;:::i;:::-;;;;;;;44835:67;;;44871:8;44881:20;44835:67;;;;;;34814:4:1::0;34802:17;;;34784:36;;34856:17;;34851:2;34836:18;;34829:45;34772:2;34757:18;;34614:266;44835:67:0::1;;;;;;;;44932:16;-1:-1:-1::0;;;;;44921:33:0::1;;44955:7;44964:12;44977:1;44964:15;;;;;;;;:::i;:::-;;;;;;;44921:59;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;19107:55:1;;;;19089:74;;19211:6;19199:19;19194:2;19179:18;;19172:47;19077:2;19062:18;;18917:308;44921:59:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;44653:343;44465:553;;44451:3;;;;;:::i;:::-;;;;44422:596;;;;44249:776;44103:922:::0;;;;;:::o;41169:113::-;2233:6;;-1:-1:-1;;;;;2233:6:0;991:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;26589:2:1;2372:68:0;;;26571:21:1;;;26608:18;;;26601:30;26667:34;26647:18;;;26640:62;26719:18;;2372:68:0;26387:356:1;2372:68:0;41270:3:::1;41260:14;41264:4;;41260:14;;;;;;;:::i;:::-;;;;;;;;41169:113:::0;;;:::o;23140:105::-;23200:13;23233:4;23226:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23140:105;;;:::o;40579:194::-;2233:6;;-1:-1:-1;;;;;2233:6:0;991:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;26589:2:1;2372:68:0;;;26571:21:1;;;26608:18;;;26601:30;26667:34;26647:18;;;26640:62;26719:18;;2372:68:0;26387:356:1;2372:68:0;-1:-1:-1;;;;;40671:26:0;::::1;;::::0;;;:16:::1;:26;::::0;;;;;;;;:40;;-1:-1:-1;;40671:40:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40727:38;;20524:41:1;;;40727:38:0::1;::::0;20497:18:1;40727:38:0::1;;;;;;;;40579:194:::0;;:::o;45903:521::-;46003:38;46020:6;991:10;40781:212;:::i;46003:38::-;45995:63;;;;-1:-1:-1;;;45995:63:0;;23056:2:1;45995:63:0;;;23038:21:1;23095:2;23075:18;;;23068:30;-1:-1:-1;;;23114:18:1;;;23107:42;23166:18;;45995:63:0;22854:336:1;45995:63:0;46077:29;;;;42210:4;42239:14;;;;;;;;;;;-1:-1:-1;;;;;42239:21:0;;;;;;;;;:28;;;;;46069:71;;;;-1:-1:-1;;;46069:71:0;;22286:2:1;46069:71:0;;;22268:21:1;22325:2;22305:18;;;22298:30;22364:31;22344:18;;;22337:59;22413:18;;46069:71:0;22084:353:1;46069:71:0;46159:19;;;:9;:19;;;;;;;;;;;-1:-1:-1;;;;;46159:27:0;;;;;;;;;:33;46195:1;46159:33;;;;:37;46151:89;;;;-1:-1:-1;;;46151:89:0;;26950:2:1;46151:89:0;;;26932:21:1;26989:2;26969:18;;;26962:30;27028:34;27008:18;;;27001:62;27099:9;27079:18;;;27072:37;27126:19;;46151:89:0;26748:403:1;46151:89:0;46268:19;;;;46251:14;46268:19;;;;;;;;;;;-1:-1:-1;;;;;46268:27:0;;;;;;;;;;;;:34;;46313:43;;;46268:34;46313:43;;;-1:-1:-1;;46313:43:0;;;;;;46372:44;;19430:74:1;;;46268:34:0;;;;;;19549:18:1;;;19542:43;;;19601:18;;19594:43;;;;46372:44:0;;19418:2:1;19403:18;46372:44:0;;;;;;;;45984:440;45903:521;;;:::o;39710:472::-;2233:6;;-1:-1:-1;;;;;2233:6:0;991:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;26589:2:1;2372:68:0;;;26571:21:1;;;26608:18;;;26601:30;26667:34;26647:18;;;26640:62;26719:18;;2372:68:0;26387:356:1;2372:68:0;39794:21:::1;39783:7;:32;;39775:69;;;::::0;-1:-1:-1;;;39775:69:0;;24572:2:1;39775:69:0::1;::::0;::::1;24554:21:1::0;24611:2;24591:18;;;24584:30;24650:26;24630:18;;;24623:54;24694:18;;39775:69:0::1;24370:348:1::0;39775:69:0::1;39859:12:::0;39855:85:::1;;-1:-1:-1::0;39907:21:0::1;39855:85;39950:12;39979:3;39965:11;:7:::0;39975:1:::1;39965:11;:::i;:::-;:17;;;;:::i;:::-;39993:69;::::0;39950:32;;-1:-1:-1;40001:42:0::1;::::0;39993:69;::::1;;;::::0;39950:32;;39993:69:::1;::::0;;;39950:32;40001:42;39993:69;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;991:10:0;40073:49:::1;40104:17;40114:7:::0;40104;:17:::1;:::i;:::-;40073:49;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;40140:34:0::1;::::0;32371:25:1;;;991:10:0;;40140:34:::1;::::0;32359:2:1;32344:18;40140:34:0::1;32225:177:1::0;25498:442:0;-1:-1:-1;;;;;25731:20:0;;991:10;25731:20;;:60;;-1:-1:-1;25755:36:0;25772:4;991:10;40781:212;:::i;25755:36::-;25709:160;;;;-1:-1:-1;;;25709:160:0;;25331:2:1;25709:160:0;;;25313:21:1;25370:2;25350:18;;;25343:30;25409:34;25389:18;;;25382:62;25480:20;25460:18;;;25453:48;25518:19;;25709:160:0;25129:414:1;25709:160:0;25880:52;25903:4;25909:2;25913:3;25918:7;25927:4;25880:22;:52::i;:::-;25498:442;;;;;:::o;45258:163::-;45362:51;991:10;45389:9;45400:12;45362;:51::i;:::-;45258:163;;:::o;23800:524::-;23956:16;24017:3;:10;23998:8;:15;:29;23990:83;;;;-1:-1:-1;;;23990:83:0;;28876:2:1;23990:83:0;;;28858:21:1;28915:2;28895:18;;;28888:30;28954:34;28934:18;;;28927:62;29025:11;29005:18;;;28998:39;29054:19;;23990:83:0;28674:405:1;23990:83:0;24086:30;24133:8;:15;24119:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24119:30:0;;24086:63;;24167:9;24162:122;24186:8;:15;24182:1;:19;24162:122;;;24242:30;24252:8;24261:1;24252:11;;;;;;;;:::i;:::-;;;;;;;24265:3;24269:1;24265:6;;;;;;;;:::i;:::-;;;;;;;24242:9;:30::i;:::-;24223:13;24237:1;24223:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;24203:3;;;:::i;:::-;;;24162:122;;;-1:-1:-1;24303:13:0;23800:524;-1:-1:-1;;;23800:524:0:o;45081:121::-;45156:38;991:10;45181:12;45156:10;:38::i;:::-;45081:121;:::o;45429:466::-;45530:38;45547:6;991:10;40781:212;:::i;45530:38::-;45522:63;;;;-1:-1:-1;;;45522:63:0;;23056:2:1;45522:63:0;;;23038:21:1;23095:2;23075:18;;;23068:30;-1:-1:-1;;;23114:18:1;;;23107:42;23166:18;;45522:63:0;22854:336:1;45522:63:0;45604:29;;;;42210:4;42239:14;;;;;;;;;;;-1:-1:-1;;;;;42239:21:0;;;;;;;;;:28;;;;;45596:71;;;;-1:-1:-1;;;45596:71:0;;22286:2:1;45596:71:0;;;22268:21:1;22325:2;22305:18;;;22298:30;22364:31;22344:18;;;22337:59;22413:18;;45596:71:0;22084:353:1;45596:71:0;45695:19;;;;45678:14;45695:19;;;;;;;;;;;-1:-1:-1;;;;;45695:27:0;;;;;;;;;;;;:34;;45740:43;;;-1:-1:-1;;;45740:43:0;;;;;;;;;;;45799:88;;991:10;18687:34:1;;18737:18;;;18730:43;;;;45695:34:0;;;;;18818:18:1;;;18811:43;;;45852:34:0;;;;;;;18885:2:1;18870:18;;18863:43;45695:34:0;45799:88;;18613:3:1;18598:19;45799:88:0;18397:515:1;2811:103:0;2233:6;;-1:-1:-1;;;;;2233:6:0;991:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;26589:2:1;2372:68:0;;;26571:21:1;;;26608:18;;;26601:30;26667:34;26647:18;;;26640:62;26719:18;;2372:68:0;26387:356:1;2372:68:0;2876:30:::1;2903:1;2876:18;:30::i;:::-;2811:103::o:0;46746:1783::-;2233:6;;-1:-1:-1;;;;;2233:6:0;991:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;26589:2:1;2372:68:0;;;26571:21:1;;;26608:18;;;26601:30;26667:34;26647:18;;;26640:62;26719:18;;2372:68:0;26387:356:1;2372:68:0;46880:13;;46923:3:::1;46913:13;::::0;::::1;;46905:63;;;::::0;-1:-1:-1;;;46905:63:0;;27358:2:1;46905:63:0::1;::::0;::::1;27340:21:1::0;27397:2;27377:18;;;27370:30;27436:34;27416:18;;;27409:62;-1:-1:-1;;;27487:18:1;;;27480:35;27532:19;;46905:63:0::1;27156:401:1::0;46905:63:0::1;47004:7;:14;46987:6;:13;:31;46979:83;;;::::0;-1:-1:-1;;;46979:83:0;;30465:2:1;46979:83:0::1;::::0;::::1;30447:21:1::0;30504:2;30484:18;;;30477:30;30543:34;30523:18;;;30516:62;30614:9;30594:18;;;30587:37;30641:19;;46979:83:0::1;30263:403:1::0;46979:83:0::1;47101:8;:22:::0;;;::::1;;;47075:23;47136:1230;47158:7;47154:11;;:1;:11;;;47136:1230;;;47245:1;47196:9;:27:::0;47206:16:::1;47196:27;;;;;;;;;;;;;:38;47224:6;47231:1;47224:9;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;47196:38:0::1;-1:-1:-1::0;;;;;47196:38:0::1;;;;;;;;;;;;:45;;;:50;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;47309:6;47316:1;47309:9;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;47268:72:0::1;47305:1;-1:-1:-1::0;;;;;47268:72:0::1;47283:12;991:10:::0;;911:98;47283:12:::1;47268:72;::::0;;32871:10:1;32859:23;;32841:42;;47338:1:0::1;32914:2:1::0;32899:18;;32892:34;-1:-1:-1;;;;;47268:72:0;;;::::1;::::0;::::1;::::0;32814:18:1;47268:72:0::1;;;;;;;47355:16;47406:15;47423:16;47441:12;47455:14;47471:7;47479:1;47471:10;;;;;;;;;;:::i;:::-;;;;;;;47483:16;47501:1;47389:114;;;;;;;;;;;;;15381:19:1::0;;;15438:3;15434:16;;;;-1:-1:-1;;;;;;15430:89:1;15425:2;15416:12;;15409:111;15545:2;15536:12;;15529:28;;;;15595:2;15591:15;;;;-1:-1:-1;;15587:88:1;15582:2;15573:12;;15566:110;15799:3;15795:16;;;15695:66;15791:25;;;15786:2;15777:12;;15770:47;15842:2;15833:12;;15826:28;;;;15889:16;;;;15885:25;15879:3;15870:13;;15863:48;15936:3;15927:13;;15078:868;47389:114:0::1;;::::0;;;;::::1;-1:-1:-1::0;;47389:114:0;;;;;;47379:125;;47389:114:::1;47379:125:::0;;::::1;::::0;47553:29;;::::1;15020:19:1::0;;;47379:125:0;-1:-1:-1;47374:131:0::1;::::0;15055:12:1;47553:29:0::1;;;;;;;;;;;;47543:40;;;;;;47538:46;;47520:64;;47646:7;47654:1;47646:10;;;;;;;;;;:::i;:::-;;;;;;;47599:9;:27:::0;47609:16:::1;47599:27;;;;;;;;;;;;;:38;47627:6;47634:1;47627:9;;;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;47599:38:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;47599:38:0;:57;;-1:-1:-1;;47599:57:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;47726:18:::1;47739:5;47726:10:::0;:18:::1;:::i;:::-;47671:9;:27:::0;47681:16:::1;47671:27;;;;;;;;;;;;;:38;47699:6;47706:1;47699:9;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;47671:38:0::1;-1:-1:-1::0;;;;;47671:38:0::1;;;;;;;;;;;;:45;;;:74;;;;;;;;;;;;;;;;;;47805:10;47788:28;;;;;;15020:19:1::0;;15064:2;15055:12;;14891:182;47788:28:0::1;;::::0;;-1:-1:-1;;47788:28:0;;::::1;::::0;;;;;;47778:39;;47788:28:::1;47778:39:::0;;::::1;::::0;;-1:-1:-1;47892:18:0::1;47905:5;47778:39:::0;47892:18:::1;:::i;:::-;47833:9;:27:::0;47843:16:::1;47833:27;;;;;;;;;;;;;:38;47861:6;47868:1;47861:9;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;47833:38:0::1;-1:-1:-1::0;;;;;47833:38:0::1;;;;;;;;;;;;:49;;;:78;;;;;;;;;;;;;;;;;;48000:8;47986:11;:22;;;;:::i;:::-;47926:9;:27:::0;47936:16:::1;47926:27;;;;;;;;;;;;;:38;47954:6;47961:1;47954:9;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;47926:38:0::1;-1:-1:-1::0;;;;;47926:38:0::1;;;;;;;;;;;;:50;;;:83;;;;;;;;;;;;;;;;;;48067:6;48074:1;48067:9;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;48029:69:0::1;48063:1;-1:-1:-1::0;;;;;48029:69:0::1;48044:6;48051:1;48044:9;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;48029:69:0::1;;48078:16;48096:1;48029:69;;;;;;32871:10:1::0;32859:23;;;;32841:42;;32914:2;32899:18;;32892:34;32829:2;32814:18;;32660:272;48029:69:0::1;;;;;;;;48146:6;48153:1;48146:9;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;48118:200:0::1;48143:1;48125:16;48118:200;;;48157:7;48165:1;48157:10;;;;;;;;;;:::i;:::-;;;;;;;48169:9;:27:::0;48179:16:::1;48169:27;;;;;;;;;;;;;:38;48197:6;48204:1;48197:9;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;48169:38:0::1;-1:-1:-1::0;;;;;48169:38:0::1;;;;;;;;;;;;:45;;;;;;;;;;;;48216:9;:27:::0;48226:16:::1;48216:27;;;;;;;;;;;;;:38;48244:6;48251:1;48244:9;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;48216:38:0::1;-1:-1:-1::0;;;;;48216:38:0::1;;;;;;;;;;;;:49;;;;;;;;;;;;48267:9;:27:::0;48277:16:::1;48267:27;;;;;;;;;;;;;:38;48295:6;48302:1;48295:9;;;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;48267:38:0::1;::::0;;;;::::1;::::0;;;;;;;;-1:-1:-1;48267:38:0;:50;48118:200;;34412:4:1;34400:17;;;34382:36;;48267:50:0::1;34483:15:1::0;;;34463:18;;;34456:43;;;;34535:15;;;34515:18;;;34508:43;;;;-1:-1:-1;;;48267:50:0;::::1;;34582:2:1::0;34567:18;;34560:43;34369:3;34354:19;48118:200:0::1;;;;;;;48333:21;48353:1;48333:21:::0;::::1;:::i;:::-;;;47181:1185;;47167:3;;;;;:::i;:::-;;;;47136:1230;;;-1:-1:-1::0;48378:8:0::1;:41:::0;;-1:-1:-1;;48378:41:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;48467:20;;::::1;::::0;::::1;48441:22:::0;::::1;;:46;;48432:89;;;::::0;-1:-1:-1;;;48432:89:0;;24214:2:1;48432:89:0::1;::::0;::::1;24196:21:1::0;24253:2;24233:18;;;24226:30;24292:31;24272:18;;;24265:59;24341:18;;48432:89:0::1;24012:353:1::0;48432:89:0::1;46847:1682;;46746:1783:::0;;:::o;42004:96::-;2233:6;;-1:-1:-1;;;;;2233:6:0;991:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;26589:2:1;2372:68:0;;;26571:21:1;;;26608:18;;;26601:30;26667:34;26647:18;;;26640:62;26719:18;;2372:68:0;26387:356:1;2372:68:0;42077:15:::1;42085:6;42077:7;:15::i;24397:311::-:0;991:10;-1:-1:-1;;;;;24500:24:0;;;;24492:78;;;;-1:-1:-1;;;24492:78:0;;28466:2:1;24492:78:0;;;28448:21:1;28505:2;28485:18;;;28478:30;28544:34;28524:18;;;28517:62;28615:11;28595:18;;;28588:39;28644:19;;24492:78:0;28264:405:1;24492:78:0;991:10;24583:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24583:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24583:53:0;;;;;;;;;;24652:48;;20524:41:1;;;24583:42:0;;991:10;24652:48;;20497:18:1;24652:48:0;;;;;;;24397:311;;:::o;41897:99::-;2233:6;;-1:-1:-1;;;;;2233:6:0;991:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;26589:2:1;2372:68:0;;;26571:21:1;;;26608:18;;;26601:30;26667:34;26647:18;;;26640:62;26719:18;;2372:68:0;26387:356:1;2372:68:0;41965:8:::1;:23:::0;;;::::1;::::0;::::1;::::0;;41897:99::o;41331:115::-;2233:6;;-1:-1:-1;;;;;2233:6:0;991:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;26589:2:1;2372:68:0;;;26571:21:1;;;26608:18;;;26601:30;26667:34;26647:18;;;26640:62;26719:18;;2372:68:0;26387:356:1;2372:68:0;41406:8:::1;:32:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;41331:115::o;42340:1702::-;42422:7;42431:12;:19;40261:18;:5;-1:-1:-1;;;;;40261:16:0;4744:20;4792:8;;;4421:387;40261:18;40260:19;40252:51;;;;-1:-1:-1;;;40252:51:0;;28118:2:1;40252:51:0;;;28100:21:1;28157:2;28137:18;;;28130:30;28196:21;28176:18;;;28169:49;28235:18;;40252:51:0;27916:343:1;40252:51:0;-1:-1:-1;;;;;40322:21:0;;991:10;40322:21;;:62;;-1:-1:-1;40347:37:0;40364:5;991:10;40781:212;:::i;40347:37::-;40314:87;;;;-1:-1:-1;;;40314:87:0;;23056:2:1;40314:87:0;;;23038:21:1;23095:2;23075:18;;;23068:30;-1:-1:-1;;;23114:18:1;;;23107:42;23166:18;;40314:87:0;22854:336:1;40314:87:0;40420:8;:22;;;40412:64;;;;-1:-1:-1;;;40412:64:0;;27764:2:1;40412:64:0;;;27746:21:1;27803:2;27783:18;;;27776:30;27842:27;27822:18;;;27815:55;27887:18;;40412:64:0;27562:349:1;40412:64:0;40506:3;40495:7;:14;;40487:64;;;;-1:-1:-1;;;40487:64:0;;27358:2:1;40487:64:0;;;27340:21:1;27397:2;27377:18;;;27370:30;27436:34;27416:18;;;27409:62;-1:-1:-1;;;27487:18:1;;;27480:35;27532:19;;40487:64:0;27156:401:1;40487:64:0;42482:19;;42548:8:::1;:22:::0;;;::::1;;;42468:11;42583:1297;42604:6;42600:1;:10;42583:1297;;;42641:11;42666:16;-1:-1:-1::0;;;;;42655:42:0::1;;42698:12;42711:1;42698:15;;;;;;;;:::i;:::-;;;;;;;42655:59;;;;;;;;;;;;;;32206:6:1::0;32194:19;;;;32176:38;;32164:2;32149:18;;32031:189;42655:59:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42641:73:::0;-1:-1:-1;42735:9:0::1;::::0;::::1;::::0;42731:1127:::1;;42778:27;::::0;;::::1;:9;:27:::0;;;::::1;::::0;;;;;;;-1:-1:-1;;;;;42778:36:0;::::1;::::0;;;;;;;:50;;-1:-1:-1;;42778:50:0::1;;::::0;::::1;;::::0;;;-1:-1:-1;;42847:43:0::1;::::0;:48:::1;::::0;-1:-1:-1;;42847:48:0;;::::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42914:16;42965:15;42982:16;43000:12;43014;43027:1;43014:15;;;;;;;;:::i;:::-;;;;;;;43031:14;43048:1;42948:102;;;;;;;;;;;;16232:19:1::0;;;16289:3;16285:16;;;;-1:-1:-1;;;;;;16281:89:1;16276:2;16267:12;;16260:111;16396:2;16387:12;;16380:28;;;;16446:3;16442:16;16460:66;16438:89;16433:2;16424:12;;16417:111;16566:2;16562:15;-1:-1:-1;;16558:88:1;16553:2;16544:12;;16537:110;16672:2;16663:12;;16656:28;16709:3;16700:13;;15951:768;42948:102:0::1;;::::0;;-1:-1:-1;;42948:102:0;;::::1;::::0;;;;;;42938:113;;42948:102:::1;42938:113:::0;;::::1;::::0;43104:29;;::::1;15020:19:1::0;;;43104:29:0;;;;;;;;;15055:12:1;;;43104:29:0;;;43094:40;;;::::1;::::0;;;;42938:113;;-1:-1:-1;42933:119:0::1;43177:18;43190:5;43094:40:::0;43177:18:::1;:::i;:::-;43154:42;;43261:6;43215:9;:27:::0;43225:16:::1;43215:27;;;;;;;;;;;;;:36;43243:7;-1:-1:-1::0;;;;;43215:36:0::1;-1:-1:-1::0;;;;;43215:36:0::1;;;;;;;;;;;;:43;;;:52;;;;;;;;;;;;;;;;;;43286:17;43361:5;43345:10;43328:28;;;;;;15020:19:1::0;;15064:2;15055:12;;14891:182;43328:28:0::1;;;;;;;;;;;;;43318:39;;;;;;43313:45;;:53;;;;:::i;:::-;43286:81;;43436:10;43386:9;:27:::0;43396:16:::1;43386:27;;;;;;;;;;;;;:36;43414:7;-1:-1:-1::0;;;;;43386:36:0::1;-1:-1:-1::0;;;;;43386:36:0::1;;;;;;;;;;;;:47;;;:60;;;;;;;;;;;;;;;;;;43493:8;43479:11;:22;;;;:::i;:::-;43543:65;::::0;;32871:10:1;32859:23;;32841:42;;43606:1:0::1;32914:2:1::0;32899:18;;32892:34;43465:36:0;;-1:-1:-1;;;;;;43543:65:0;::::1;::::0;43575:1:::1;::::0;43543:65;;::::1;::::0;32814:18:1;43543:65:0::1;;;;;;;43674:7;-1:-1:-1::0;;;;;43632:90:0::1;43657:12;43670:1;43657:15;;;;;;;;:::i;:::-;;;;;;;43632:90;;43639:16;43632:90;;;43683:5;43690:6;43698:10;43710:11;43632:90;;;;;;;;33963:4:1::0;33951:17;;;;33933:36;;33988:10;34034:15;;;34029:2;34014:18;;34007:43;34086:15;;34081:2;34066:18;;34059:43;34133:2;34118:18;;34111:34;33920:3;33905:19;;33706:445;43632:90:0::1;;;;;;;;43752:16;-1:-1:-1::0;;;;;43741:33:0::1;;43775:7;43784:12;43797:1;43784:15;;;;;;;;:::i;:::-;;;;;;;43741:59;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;19107:55:1;;;;19089:74;;19211:6;19199:19;19194:2;19179:18;;19172:47;19077:2;19062:18;;18917:308;43741:59:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;43841:1;43821:21;;;;;:::i;:::-;;;42759:1099;;;;42731:1127;-1:-1:-1::0;42612:3:0;::::1;::::0;::::1;:::i;:::-;;;;42583:1297;;;-1:-1:-1::0;43890:8:0::1;:41:::0;;-1:-1:-1;;43890:41:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;43980:20;;::::1;::::0;::::1;43953:22:::0;::::1;;:47;;43944:90;;;::::0;-1:-1:-1;;;43944:90:0;;24214:2:1;43944:90:0::1;::::0;::::1;24196:21:1::0;24253:2;24233:18;;;24226:30;24292:31;24272:18;;;24265:59;24341:18;;43944:90:0::1;24012:353:1::0;43944:90:0::1;42457:1585;;42340:1702:::0;;;;:::o;41527:302::-;2233:6;;-1:-1:-1;;;;;2233:6:0;991:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;26589:2:1;2372:68:0;;;26571:21:1;;;26608:18;;;26601:30;26667:34;26647:18;;;26640:62;26719:18;;2372:68:0;26387:356:1;2372:68:0;41610:8:::1;:19:::0;;;::::1;;;:24:::0;41602:96:::1;;;::::0;-1:-1:-1;;;41602:96:0;;26161:2:1;41602:96:0::1;::::0;::::1;26143:21:1::0;26200:2;26180:18;;;26173:30;26239:34;26219:18;;;26212:62;26310:29;26290:18;;;26283:57;26357:19;;41602:96:0::1;25959:423:1::0;41602:96:0::1;41728:8;:18:::0;::::1;-1:-1:-1::0;;;41728:18:0;;::::1;::::0;::::1;41717:29:::0;;::::1;;;41709:71;;;::::0;-1:-1:-1;;;41709:71:0;;29695:2:1;41709:71:0::1;::::0;::::1;29677:21:1::0;29734:2;29714:18;;;29707:30;29773:31;29753:18;;;29746:59;29822:18;;41709:71:0::1;29493:353:1::0;41709:71:0::1;41791:8;:30:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;41791:30:0;;::::1;::::0;;;::::1;::::0;;41527:302::o;40781:212::-;-1:-1:-1;;;;;40913:27:0;;40889:4;40913:27;;;:16;:27;;;;;;;;;:72;;-1:-1:-1;;;;;;24903:27:0;;;24879:4;24903:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;40944:41;40906:79;40781:212;-1:-1:-1;;;40781:212:0:o;25020:401::-;-1:-1:-1;;;;;25228:20:0;;991:10;25228:20;;:60;;-1:-1:-1;25252:36:0;25269:4;991:10;40781:212;:::i;25252:36::-;25206:151;;;;-1:-1:-1;;;25206:151:0;;23804:2:1;25206:151:0;;;23786:21:1;23843:2;23823:18;;;23816:30;23882:34;23862:18;;;23855:62;23953:11;23933:18;;;23926:39;23982:19;;25206:151:0;23602:405:1;25206:151:0;25368:45;25386:4;25392:2;25396;25400:6;25408:4;25368:17;:45::i;3069:201::-;2233:6;;-1:-1:-1;;;;;2233:6:0;991:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;26589:2:1;2372:68:0;;;26571:21:1;;;26608:18;;;26601:30;26667:34;26647:18;;;26640:62;26719:18;;2372:68:0;26387:356:1;2372:68:0;-1:-1:-1;;;;;3158:22:0;::::1;3150:73;;;::::0;-1:-1:-1;;;3150:73:0;;23397:2:1;3150:73:0::1;::::0;::::1;23379:21:1::0;23436:2;23416:18;;;23409:30;23475:34;23455:18;;;23448:62;23546:8;23526:18;;;23519:36;23572:19;;3150:73:0::1;23195:402:1::0;3150:73:0::1;3234:28;3253:8;3234:18;:28::i;27651:1143::-:0;27878:7;:14;27864:3;:10;:28;27856:81;;;;-1:-1:-1;;;27856:81:0;;29286:2:1;27856:81:0;;;29268:21:1;29325:2;29305:18;;;29298:30;29364:34;29344:18;;;29337:62;29435:10;29415:18;;;29408:38;29463:19;;27856:81:0;29084:404:1;27856:81:0;-1:-1:-1;;;;;27956:16:0;;27948:66;;;;-1:-1:-1;;;27948:66:0;;24925:2:1;27948:66:0;;;24907:21:1;24964:2;24944:18;;;24937:30;25003:34;24983:18;;;24976:62;25074:7;25054:18;;;25047:35;25099:19;;27948:66:0;24723:401:1;27948:66:0;991:10;28027:16;28144:490;28168:3;:10;28164:1;:14;28144:490;;;28200:10;28213:3;28217:1;28213:6;;;;;;;;:::i;:::-;;;;;;;28200:19;;28234:14;28251:7;28259:1;28251:10;;;;;;;;:::i;:::-;;;;;;;;;;;;28278:19;28300:13;;;;;;;;;;-1:-1:-1;;;;;28300:19:0;;;;;;;;;;;:26;28251:10;;-1:-1:-1;28300:26:0;;;;;28349:21;;;;28341:76;;;;-1:-1:-1;;;28341:76:0;;25750:2:1;28341:76:0;;;25732:21:1;25789:2;25769:18;;;25762:30;25828:34;25808:18;;;25801:62;25899:12;25879:18;;;25872:40;25929:19;;28341:76:0;25548:406:1;28341:76:0;28461:9;:13;;;;;;;;;;;-1:-1:-1;;;;;28461:19:0;;;;;;;;;;:57;;-1:-1:-1;;28461:57:0;;28497:20;;;28461:57;;;;;;;;;;;;;28587:17;;;;;;;:24;28582:39;;28497:20;;28587:24;;;28582:39;:::i;:::-;28548:9;:13;;;;;;;;;;;-1:-1:-1;;;;;28548:17:0;;;;;;;;;;:74;;;;;;;;;-1:-1:-1;;28548:74:0;;;;;;;;;;-1:-1:-1;28180:3:0;;-1:-1:-1;28180:3:0;;:::i;:::-;;;28144:490;;;;28681:2;-1:-1:-1;;;;;28651:47:0;28675:4;-1:-1:-1;;;;;28651:47:0;28665:8;-1:-1:-1;;;;;28651:47:0;;28685:3;28690:7;28651:47;;;;;;;:::i;:::-;;;;;;;;28711:75;28747:8;28757:4;28763:2;28767:3;28772:7;28781:4;28711:35;:75::i;3430:191::-;3523:6;;;-1:-1:-1;;;;;3540:17:0;;;;;;;;;;;3573:40;;3523:6;;;3540:17;3523:6;;3573:40;;3504:16;;3573:40;3493:128;3430:191;:::o;29638:88::-;29705:13;;;;:4;;:13;;;;;:::i;26404:889::-;-1:-1:-1;;;;;26592:16:0;;26584:66;;;;-1:-1:-1;;;26584:66:0;;24925:2:1;26584:66:0;;;24907:21:1;24964:2;24944:18;;;24937:30;25003:34;24983:18;;;24976:62;25074:7;25054:18;;;25047:35;25099:19;;26584:66:0;24723:401:1;26584:66:0;991:10;26707:96;991:10;26738:4;26744:2;26748:21;26766:2;26748:17;:21::i;:::-;26771:25;26789:6;26771:17;:25::i;26707:96::-;26816:19;26838:13;;;;;;;;;;;-1:-1:-1;;;;;26838:19:0;;;;;;;;;:26;;;;;;26883:21;;;;26875:76;;;;-1:-1:-1;;;26875:76:0;;25750:2:1;26875:76:0;;;25732:21:1;25789:2;25769:18;;;25762:30;25828:34;25808:18;;;25801:62;25899:12;25879:18;;;25872:40;25929:19;;26875:76:0;25548:406:1;26875:76:0;26987:9;:13;;;;;;;;;;;-1:-1:-1;;;;;26987:19:0;;;;;;;;;;:57;;-1:-1:-1;;26987:57:0;;27023:20;;;26987:57;;;;;;;;;;;;;27105:17;;;;;;;:24;27100:39;;27023:20;;27105:24;;;27100:39;:::i;:::-;27066:9;:13;;;;;;;;;;;-1:-1:-1;;;;;27066:17:0;;;;;;;;;;;;;:74;;;;;;;;;-1:-1:-1;;27066:74:0;;;;;;;;;;27158:46;;32581:25:1;;;32622:18;;;32615:34;;;27158:46:0;;;;;;;;;32554:18:1;27158:46:0;;;;;;;27217:68;27248:8;27258:4;27264:2;27268;27272:6;27280:4;27217:30;:68::i;36113:813::-;-1:-1:-1;;;;;36353:13:0;;4744:20;4792:8;36349:570;;36389:79;;;;;-1:-1:-1;;;;;36389:43:0;;;;;:79;;36433:8;;36443:4;;36449:3;;36454:7;;36463:4;;36389:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36389:79:0;;;;;;;;-1:-1:-1;;36389:79:0;;;;;;;;;;;;:::i;:::-;;;36385:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;36781:6;36774:14;;-1:-1:-1;;;36774:14:0;;;;;;;;:::i;36385:523::-;;;36830:62;;-1:-1:-1;;;36830:62:0;;21456:2:1;36830:62:0;;;21438:21:1;21495:2;21475:18;;;21468:30;21534:34;21514:18;;;21507:62;21605:22;21585:18;;;21578:50;21645:19;;36830:62:0;21254:416:1;36385:523:0;-1:-1:-1;;;;;;36550:60:0;;36562:48;36550:60;36546:159;;36635:50;;-1:-1:-1;;;36635:50:0;;21877:2:1;36635:50:0;;;21859:21:1;21916:2;21896:18;;;21889:30;21955:34;21935:18;;;21928:62;22026:10;22006:18;;;21999:38;22054:19;;36635:50:0;21675:404:1;36934:198:0;37054:16;;;37068:1;37054:16;;;;;;;;;37000;;37029:22;;37054:16;;;;;;;;;;;;-1:-1:-1;37054:16:0;37029:41;;37092:7;37081:5;37087:1;37081:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;37119:5;36934:198;-1:-1:-1;;36934:198:0:o;35361:744::-;-1:-1:-1;;;;;35576:13:0;;4744:20;4792:8;35572:526;;35612:72;;;;;-1:-1:-1;;;;;35612:38:0;;;;;:72;;35651:8;;35661:4;;35667:2;;35671:6;;35679:4;;35612:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35612:72:0;;;;;;;;-1:-1:-1;;35612:72:0;;;;;;;;;;;;:::i;:::-;;;35608:479;;;;:::i;:::-;-1:-1:-1;;;;;;35734:55:0;;35746:43;35734:55;35730:154;;35814:50;;-1:-1:-1;;;35814:50:0;;21877:2:1;35814:50:0;;;21859:21:1;21916:2;21896:18;;;21889:30;21955:34;21935:18;;;21928:62;22026:10;22006:18;;;21999:38;22054:19;;35814:50:0;21675:404:1;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:527:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:128;317:4;-1:-1:-1;;243:2:1;235:6;231:15;227:88;223:99;215:6;195:128;:::i;:::-;341:6;332:15;;371:6;363;356:22;411:3;402:6;397:3;393:16;390:25;387:45;;;428:1;425;418:12;387:45;478:6;473:3;466:4;458:6;454:17;441:44;533:1;526:4;517:6;509;505:19;501:30;494:41;;14:527;;;;;:::o;546:196::-;614:20;;-1:-1:-1;;;;;663:54:1;;653:65;;643:93;;732:1;729;722:12;643:93;546:196;;;:::o;747:741::-;801:5;854:3;847:4;839:6;835:17;831:27;821:55;;872:1;869;862:12;821:55;908:6;895:20;934:4;957:43;997:2;957:43;:::i;:::-;1029:2;1023:9;1041:31;1069:2;1061:6;1041:31;:::i;:::-;1107:18;;;1141:15;;;;-1:-1:-1;1176:15:1;;;1226:1;1222:10;;;1210:23;;1206:32;;1203:41;-1:-1:-1;1200:61:1;;;1257:1;1254;1247:12;1200:61;1279:1;1289:169;1303:2;1300:1;1297:9;1289:169;;;1360:23;1379:3;1360:23;:::i;:::-;1348:36;;1404:12;;;;1436;;;;1321:1;1314:9;1289:169;;;-1:-1:-1;1476:6:1;;747:741;-1:-1:-1;;;;;;;747:741:1:o;1493:862::-;1546:5;1599:3;1592:4;1584:6;1580:17;1576:27;1566:55;;1617:1;1614;1607:12;1566:55;1653:6;1640:20;1679:4;1702:43;1742:2;1702:43;:::i;:::-;1774:2;1768:9;1786:31;1814:2;1806:6;1786:31;:::i;:::-;1852:18;;;1886:15;;;;-1:-1:-1;1921:15:1;;;1971:1;1967:10;;;1955:23;;1951:32;;1948:41;-1:-1:-1;1945:61:1;;;2002:1;1999;1992:12;1945:61;2024:1;2045;2055:270;2071:2;2066:3;2063:11;2055:270;;;2146:3;2133:17;2194:6;2187:5;2183:18;2176:5;2173:29;2163:57;;2216:1;2213;2206:12;2163:57;2233:18;;2271:12;;;;2303;;;;2093:1;2084:11;2055:270;;;-1:-1:-1;2343:6:1;;1493:862;-1:-1:-1;;;;;;;;1493:862:1:o;2360:735::-;2414:5;2467:3;2460:4;2452:6;2448:17;2444:27;2434:55;;2485:1;2482;2475:12;2434:55;2521:6;2508:20;2547:4;2570:43;2610:2;2570:43;:::i;:::-;2642:2;2636:9;2654:31;2682:2;2674:6;2654:31;:::i;:::-;2720:18;;;2754:15;;;;-1:-1:-1;2789:15:1;;;2839:1;2835:10;;;2823:23;;2819:32;;2816:41;-1:-1:-1;2813:61:1;;;2870:1;2867;2860:12;2813:61;2892:1;2902:163;2916:2;2913:1;2910:9;2902:163;;;2973:17;;2961:30;;3011:12;;;;3043;;;;2934:1;2927:9;2902:163;;3100:739;3153:5;3206:3;3199:4;3191:6;3187:17;3183:27;3173:55;;3224:1;3221;3214:12;3173:55;3260:6;3247:20;3286:4;3309:43;3349:2;3309:43;:::i;:::-;3381:2;3375:9;3393:31;3421:2;3413:6;3393:31;:::i;:::-;3459:18;;;3493:15;;;;-1:-1:-1;3528:15:1;;;3578:1;3574:10;;;3562:23;;3558:32;;3555:41;-1:-1:-1;3552:61:1;;;3609:1;3606;3599:12;3552:61;3631:1;3641:168;3655:2;3652:1;3649:9;3641:168;;;3712:22;3730:3;3712:22;:::i;:::-;3700:35;;3755:12;;;;3787;;;;3673:1;3666:9;3641:168;;3844:220;3886:5;3939:3;3932:4;3924:6;3920:17;3916:27;3906:55;;3957:1;3954;3947:12;3906:55;3979:79;4054:3;4045:6;4032:20;4025:4;4017:6;4013:17;3979:79;:::i;4069:163::-;4136:20;;4196:10;4185:22;;4175:33;;4165:61;;4222:1;4219;4212:12;4237:186;4296:6;4349:2;4337:9;4328:7;4324:23;4320:32;4317:52;;;4365:1;4362;4355:12;4317:52;4388:29;4407:9;4388:29;:::i;4428:260::-;4496:6;4504;4557:2;4545:9;4536:7;4532:23;4528:32;4525:52;;;4573:1;4570;4563:12;4525:52;4596:29;4615:9;4596:29;:::i;:::-;4586:39;;4644:38;4678:2;4667:9;4663:18;4644:38;:::i;:::-;4634:48;;4428:260;;;;;:::o;4693:943::-;4847:6;4855;4863;4871;4879;4932:3;4920:9;4911:7;4907:23;4903:33;4900:53;;;4949:1;4946;4939:12;4900:53;4972:29;4991:9;4972:29;:::i;:::-;4962:39;;5020:38;5054:2;5043:9;5039:18;5020:38;:::i;:::-;5010:48;;5109:2;5098:9;5094:18;5081:32;5132:18;5173:2;5165:6;5162:14;5159:34;;;5189:1;5186;5179:12;5159:34;5212:61;5265:7;5256:6;5245:9;5241:22;5212:61;:::i;:::-;5202:71;;5326:2;5315:9;5311:18;5298:32;5282:48;;5355:2;5345:8;5342:16;5339:36;;;5371:1;5368;5361:12;5339:36;5394:63;5449:7;5438:8;5427:9;5423:24;5394:63;:::i;:::-;5384:73;;5510:3;5499:9;5495:19;5482:33;5466:49;;5540:2;5530:8;5527:16;5524:36;;;5556:1;5553;5546:12;5524:36;;5579:51;5622:7;5611:8;5600:9;5596:24;5579:51;:::i;:::-;5569:61;;;4693:943;;;;;;;;:::o;5641:606::-;5745:6;5753;5761;5769;5777;5830:3;5818:9;5809:7;5805:23;5801:33;5798:53;;;5847:1;5844;5837:12;5798:53;5870:29;5889:9;5870:29;:::i;:::-;5860:39;;5918:38;5952:2;5941:9;5937:18;5918:38;:::i;:::-;5908:48;;6003:2;5992:9;5988:18;5975:32;5965:42;;6054:2;6043:9;6039:18;6026:32;6016:42;;6109:3;6098:9;6094:19;6081:33;6137:18;6129:6;6126:30;6123:50;;;6169:1;6166;6159:12;6123:50;6192:49;6233:7;6224:6;6213:9;6209:22;6192:49;:::i;6252:420::-;6344:6;6352;6405:2;6393:9;6384:7;6380:23;6376:32;6373:52;;;6421:1;6418;6411:12;6373:52;6444:29;6463:9;6444:29;:::i;:::-;6434:39;;6524:2;6513:9;6509:18;6496:32;6551:18;6543:6;6540:30;6537:50;;;6583:1;6580;6573:12;6537:50;6606:60;6658:7;6649:6;6638:9;6634:22;6606:60;:::i;:::-;6596:70;;;6252:420;;;;;:::o;6677:665::-;6802:6;6810;6818;6871:2;6859:9;6850:7;6846:23;6842:32;6839:52;;;6887:1;6884;6877:12;6839:52;6910:29;6929:9;6910:29;:::i;:::-;6900:39;;6990:2;6979:9;6975:18;6962:32;7013:18;7054:2;7046:6;7043:14;7040:34;;;7070:1;7067;7060:12;7040:34;7093:60;7145:7;7136:6;7125:9;7121:22;7093:60;:::i;:::-;7083:70;;7206:2;7195:9;7191:18;7178:32;7162:48;;7235:2;7225:8;7222:16;7219:36;;;7251:1;7248;7241:12;7219:36;;7274:62;7328:7;7317:8;7306:9;7302:24;7274:62;:::i;:::-;7264:72;;;6677:665;;;;;:::o;7347:347::-;7412:6;7420;7473:2;7461:9;7452:7;7448:23;7444:32;7441:52;;;7489:1;7486;7479:12;7441:52;7512:29;7531:9;7512:29;:::i;:::-;7502:39;;7591:2;7580:9;7576:18;7563:32;7638:5;7631:13;7624:21;7617:5;7614:32;7604:60;;7660:1;7657;7650:12;7604:60;7683:5;7673:15;;;7347:347;;;;;:::o;7699:254::-;7767:6;7775;7828:2;7816:9;7807:7;7803:23;7799:32;7796:52;;;7844:1;7841;7834:12;7796:52;7867:29;7886:9;7867:29;:::i;:::-;7857:39;7943:2;7928:18;;;;7915:32;;-1:-1:-1;;;7699:254:1:o;7958:595::-;8076:6;8084;8137:2;8125:9;8116:7;8112:23;8108:32;8105:52;;;8153:1;8150;8143:12;8105:52;8193:9;8180:23;8222:18;8263:2;8255:6;8252:14;8249:34;;;8279:1;8276;8269:12;8249:34;8302:61;8355:7;8346:6;8335:9;8331:22;8302:61;:::i;:::-;8292:71;;8416:2;8405:9;8401:18;8388:32;8372:48;;8445:2;8435:8;8432:16;8429:36;;;8461:1;8458;8451:12;8429:36;;8484:63;8539:7;8528:8;8517:9;8513:24;8484:63;:::i;8558:1282::-;8674:6;8682;8735:2;8723:9;8714:7;8710:23;8706:32;8703:52;;;8751:1;8748;8741:12;8703:52;8791:9;8778:23;8820:18;8861:2;8853:6;8850:14;8847:34;;;8877:1;8874;8867:12;8847:34;8900:61;8953:7;8944:6;8933:9;8929:22;8900:61;:::i;:::-;8890:71;;8980:2;8970:12;;9035:2;9024:9;9020:18;9007:32;9064:2;9054:8;9051:16;9048:36;;;9080:1;9077;9070:12;9048:36;9103:24;;;-1:-1:-1;9158:4:1;9150:13;;9146:27;-1:-1:-1;9136:55:1;;9187:1;9184;9177:12;9136:55;9223:2;9210:16;9245:43;9285:2;9245:43;:::i;:::-;9317:2;9311:9;9329:31;9357:2;9349:6;9329:31;:::i;:::-;9395:18;;;9429:15;;;;-1:-1:-1;9464:11:1;;;9506:1;9502:10;;;9494:19;;9490:28;;9487:41;-1:-1:-1;9484:61:1;;;9541:1;9538;9531:12;9484:61;9563:1;9554:10;;9573:236;9587:2;9584:1;9581:9;9573:236;;;9658:3;9645:17;9675:29;9698:5;9675:29;:::i;:::-;9717:18;;9605:1;9598:9;;;;;9755:12;;;;9787;;9573:236;;;9577:3;9828:6;9818:16;;;;;;;8558:1282;;;;;:::o;9845:346::-;9928:6;9981:2;9969:9;9960:7;9956:23;9952:32;9949:52;;;9997:1;9994;9987:12;9949:52;10037:9;10024:23;10070:18;10062:6;10059:30;10056:50;;;10102:1;10099;10092:12;10056:50;10125:60;10177:7;10168:6;10157:9;10153:22;10125:60;:::i;:::-;10115:70;9845:346;-1:-1:-1;;;;9845:346:1:o;10196:591::-;10312:6;10320;10373:2;10361:9;10352:7;10348:23;10344:32;10341:52;;;10389:1;10386;10379:12;10341:52;10429:9;10416:23;10458:18;10499:2;10491:6;10488:14;10485:34;;;10515:1;10512;10505:12;10485:34;10538:60;10590:7;10581:6;10570:9;10566:22;10538:60;:::i;:::-;10528:70;;10651:2;10640:9;10636:18;10623:32;10607:48;;10680:2;10670:8;10667:16;10664:36;;;10696:1;10693;10686:12;10664:36;;10719:62;10773:7;10762:8;10751:9;10747:24;10719:62;:::i;10792:245::-;10850:6;10903:2;10891:9;10882:7;10878:23;10874:32;10871:52;;;10919:1;10916;10909:12;10871:52;10958:9;10945:23;10977:30;11001:5;10977:30;:::i;11042:249::-;11111:6;11164:2;11152:9;11143:7;11139:23;11135:32;11132:52;;;11180:1;11177;11170:12;11132:52;11212:9;11206:16;11231:30;11255:5;11231:30;:::i;11296:666::-;11376:6;11384;11392;11445:2;11433:9;11424:7;11420:23;11416:32;11413:52;;;11461:1;11458;11451:12;11413:52;11501:9;11488:23;11530:18;11571:2;11563:6;11560:14;11557:34;;;11587:1;11584;11577:12;11557:34;11625:6;11614:9;11610:22;11600:32;;11670:7;11663:4;11659:2;11655:13;11651:27;11641:55;;11692:1;11689;11682:12;11641:55;11732:2;11719:16;11758:2;11750:6;11747:14;11744:34;;;11774:1;11771;11764:12;11744:34;11821:7;11814:4;11805:6;11801:2;11797:15;11793:26;11790:39;11787:59;;;11842:1;11839;11832:12;11787:59;11873:4;11865:13;;;;11897:6;;-1:-1:-1;11935:20:1;;;;11922:34;;11296:666;-1:-1:-1;;;;11296:666:1:o;11967:450::-;12036:6;12089:2;12077:9;12068:7;12064:23;12060:32;12057:52;;;12105:1;12102;12095:12;12057:52;12145:9;12132:23;12178:18;12170:6;12167:30;12164:50;;;12210:1;12207;12200:12;12164:50;12233:22;;12286:4;12278:13;;12274:27;-1:-1:-1;12264:55:1;;12315:1;12312;12305:12;12264:55;12338:73;12403:7;12398:2;12385:16;12380:2;12376;12372:11;12338:73;:::i;12422:180::-;12481:6;12534:2;12522:9;12513:7;12509:23;12505:32;12502:52;;;12550:1;12547;12540:12;12502:52;-1:-1:-1;12573:23:1;;12422:180;-1:-1:-1;12422:180:1:o;12607:254::-;12675:6;12683;12736:2;12724:9;12715:7;12711:23;12707:32;12704:52;;;12752:1;12749;12742:12;12704:52;12788:9;12775:23;12765:33;;12817:38;12851:2;12840:9;12836:18;12817:38;:::i;12866:184::-;12924:6;12977:2;12965:9;12956:7;12952:23;12948:32;12945:52;;;12993:1;12990;12983:12;12945:52;13016:28;13034:9;13016:28;:::i;13055:330::-;13130:6;13138;13146;13199:2;13187:9;13178:7;13174:23;13170:32;13167:52;;;13215:1;13212;13205:12;13167:52;13238:28;13256:9;13238:28;:::i;:::-;13228:38;;13285;13319:2;13308:9;13304:18;13285:38;:::i;:::-;13275:48;;13342:37;13375:2;13364:9;13360:18;13342:37;:::i;:::-;13332:47;;13055:330;;;;;:::o;13390:247::-;13458:6;13511:2;13499:9;13490:7;13486:23;13482:32;13479:52;;;13527:1;13524;13517:12;13479:52;13559:9;13553:16;13578:29;13601:5;13578:29;:::i;13642:435::-;13695:3;13733:5;13727:12;13760:6;13755:3;13748:19;13786:4;13815:2;13810:3;13806:12;13799:19;;13852:2;13845:5;13841:14;13873:1;13883:169;13897:6;13894:1;13891:13;13883:169;;;13958:13;;13946:26;;13992:12;;;;14027:15;;;;13919:1;13912:9;13883:169;;;-1:-1:-1;14068:3:1;;13642:435;-1:-1:-1;;;;;13642:435:1:o;14082:530::-;14123:3;14161:5;14155:12;14188:6;14183:3;14176:19;14213:1;14223:162;14237:6;14234:1;14231:13;14223:162;;;14299:4;14355:13;;;14351:22;;14345:29;14327:11;;;14323:20;;14316:59;14252:12;14223:162;;;14403:6;14400:1;14397:13;14394:87;;;14469:1;14462:4;14453:6;14448:3;14444:16;14440:27;14433:38;14394:87;-1:-1:-1;14526:2:1;14514:15;-1:-1:-1;;14510:88:1;14501:98;;;;14601:4;14497:109;;14082:530;-1:-1:-1;;14082:530:1:o;16955:849::-;17277:4;-1:-1:-1;;;;;17387:2:1;17379:6;17375:15;17364:9;17357:34;17439:2;17431:6;17427:15;17422:2;17411:9;17407:18;17400:43;;17479:3;17474:2;17463:9;17459:18;17452:31;17506:57;17558:3;17547:9;17543:19;17535:6;17506:57;:::i;:::-;17611:9;17603:6;17599:22;17594:2;17583:9;17579:18;17572:50;17645:44;17682:6;17674;17645:44;:::i;:::-;17631:58;;17738:9;17730:6;17726:22;17720:3;17709:9;17705:19;17698:51;17766:32;17791:6;17783;17766:32;:::i;:::-;17758:40;16955:849;-1:-1:-1;;;;;;;;16955:849:1:o;17809:583::-;18031:4;-1:-1:-1;;;;;18141:2:1;18133:6;18129:15;18118:9;18111:34;18193:2;18185:6;18181:15;18176:2;18165:9;18161:18;18154:43;;18233:6;18228:2;18217:9;18213:18;18206:34;18276:6;18271:2;18260:9;18256:18;18249:34;18320:3;18314;18303:9;18299:19;18292:32;18341:45;18381:3;18370:9;18366:19;18358:6;18341:45;:::i;:::-;18333:53;17809:583;-1:-1:-1;;;;;;;17809:583:1:o;19648:261::-;19827:2;19816:9;19809:21;19790:4;19847:56;19899:2;19888:9;19884:18;19876:6;19847:56;:::i;19914:465::-;20171:2;20160:9;20153:21;20134:4;20197:56;20249:2;20238:9;20234:18;20226:6;20197:56;:::i;:::-;20301:9;20293:6;20289:22;20284:2;20273:9;20269:18;20262:50;20329:44;20366:6;20358;20329:44;:::i;:::-;20321:52;19914:465;-1:-1:-1;;;;;19914:465:1:o;20576:449::-;20735:2;20724:9;20717:21;20774:6;20769:2;20758:9;20754:18;20747:34;20831:6;20823;20818:2;20807:9;20803:18;20790:48;20887:1;20858:22;;;20882:2;20854:31;;;20847:42;;;;20941:2;20929:15;;;-1:-1:-1;;20925:88:1;20910:104;20906:113;;20576:449;-1:-1:-1;20576:449:1:o;21030:219::-;21179:2;21168:9;21161:21;21142:4;21199:44;21239:2;21228:9;21224:18;21216:6;21199:44;:::i;30671:1355::-;30887:13;;14878:4;14867:16;14855:29;;30857:3;30842:19;;30959:4;30951:6;30947:17;30941:24;30974:52;31020:4;31009:9;31005:20;30991:12;14878:4;14867:16;14855:29;;14811:75;30974:52;;31075:4;31067:6;31063:17;31057:24;31090:55;31139:4;31128:9;31124:20;31108:14;14693:6;14682:18;14670:31;;14617:90;31090:55;;31194:4;31186:6;31182:17;31176:24;31209:55;31258:4;31247:9;31243:20;31227:14;14788:10;14777:22;14765:35;;14712:94;31209:55;;31313:4;31305:6;31301:17;31295:24;31328:55;31377:4;31366:9;31362:20;31346:14;14788:10;14777:22;14765:35;;14712:94;31328:55;;31432:4;31424:6;31420:17;31414:24;31447:55;31496:4;31485:9;31481:20;31465:14;14788:10;14777:22;14765:35;;14712:94;31447:55;;31551:4;31543:6;31539:17;31533:24;31566:55;31615:4;31604:9;31600:20;31584:14;14788:10;14777:22;14765:35;;14712:94;31566:55;;31670:4;31662:6;31658:17;31652:24;31685:55;31734:4;31723:9;31719:20;31703:14;14788:10;14777:22;14765:35;;14712:94;31685:55;-1:-1:-1;31759:6:1;31802:15;;;31796:22;14788:10;14777:22;;;31861:18;;;14765:35;;;;31899:6;31942:15;;;31936:22;14777;32001:18;;;;14765:35;;;;30671:1355;:::o;34885:183::-;34945:4;34978:18;34970:6;34967:30;34964:56;;;35000:18;;:::i;:::-;-1:-1:-1;35045:1:1;35041:14;35057:4;35037:25;;34885:183::o;35073:128::-;35113:3;35144:1;35140:6;35137:1;35134:13;35131:39;;;35150:18;;:::i;:::-;-1:-1:-1;35186:9:1;;35073:128::o;35206:228::-;35245:3;35273:10;35310:2;35307:1;35303:10;35340:2;35337:1;35333:10;35371:3;35367:2;35363:12;35358:3;35355:21;35352:47;;;35379:18;;:::i;:::-;35415:13;;35206:228;-1:-1:-1;;;;35206:228:1:o;35439:120::-;35479:1;35505;35495:35;;35510:18;;:::i;:::-;-1:-1:-1;35544:9:1;;35439:120::o;35564:228::-;35604:7;35730:1;-1:-1:-1;;35658:74:1;35655:1;35652:81;35647:1;35640:9;35633:17;35629:105;35626:131;;;35737:18;;:::i;:::-;-1:-1:-1;35777:9:1;;35564:228::o;35797:125::-;35837:4;35865:1;35862;35859:8;35856:34;;;35870:18;;:::i;:::-;-1:-1:-1;35907:9:1;;35797:125::o;35927:437::-;36006:1;36002:12;;;;36049;;;36070:61;;36124:4;36116:6;36112:17;36102:27;;36070:61;36177:2;36169:6;36166:14;36146:18;36143:38;36140:218;;;-1:-1:-1;;;36211:1:1;36204:88;36315:4;36312:1;36305:15;36343:4;36340:1;36333:15;36140:218;;35927:437;;;:::o;36369:308::-;-1:-1:-1;;36470:2:1;36464:4;36460:13;36456:86;36448:6;36444:99;36609:6;36597:10;36594:22;36573:18;36561:10;36558:34;36555:62;36552:88;;;36620:18;;:::i;:::-;36656:2;36649:22;-1:-1:-1;;36369:308:1:o;36682:195::-;36721:3;-1:-1:-1;;36745:5:1;36742:77;36739:103;;;36822:18;;:::i;:::-;-1:-1:-1;36869:1:1;36858:13;;36682:195::o;36882:175::-;36919:3;36963:4;36956:5;36952:16;36992:4;36983:7;36980:17;36977:43;;;37000:18;;:::i;:::-;37049:1;37036:15;;36882:175;-1:-1:-1;;36882:175:1:o;37062:112::-;37094:1;37120;37110:35;;37125:18;;:::i;:::-;-1:-1:-1;37159:9:1;;37062:112::o;37179:184::-;-1:-1:-1;;;37228:1:1;37221:88;37328:4;37325:1;37318:15;37352:4;37349:1;37342:15;37368:184;-1:-1:-1;;;37417:1:1;37410:88;37517:4;37514:1;37507:15;37541:4;37538:1;37531:15;37557:184;-1:-1:-1;;;37606:1:1;37599:88;37706:4;37703:1;37696:15;37730:4;37727:1;37720:15;37746:184;-1:-1:-1;;;37795:1:1;37788:88;37895:4;37892:1;37885:15;37919:4;37916:1;37909:15;37935:179;37970:3;38012:1;37994:16;37991:23;37988:120;;;38058:1;38055;38052;38037:23;-1:-1:-1;38095:1:1;38089:8;38084:3;38080:18;37988:120;37935:179;:::o;38119:731::-;38158:3;38200:4;38182:16;38179:26;38176:39;;;38119:731;:::o;38176:39::-;38242:2;38236:9;38264:66;38385:2;38367:16;38363:25;38360:1;38354:4;38339:50;38418:4;38412:11;38442:16;38477:18;38548:2;38541:4;38533:6;38529:17;38526:25;38521:2;38513:6;38510:14;38507:45;38504:58;;;38555:5;;;;;38119:731;:::o;38504:58::-;38592:6;38586:4;38582:17;38571:28;;38628:3;38622:10;38655:2;38647:6;38644:14;38641:27;;;38661:5;;;;;;38119:731;:::o;38641:27::-;38745:2;38726:16;38720:4;38716:27;38712:36;38705:4;38696:6;38691:3;38687:16;38683:27;38680:69;38677:82;;;38752:5;;;;;;38119:731;:::o;38677:82::-;38768:57;38819:4;38810:6;38802;38798:19;38794:30;38788:4;38768:57;:::i;:::-;-1:-1:-1;38841:3:1;;38119:731;-1:-1:-1;;;;;38119:731:1:o;38855:177::-;-1:-1:-1;;;;;;38933:5:1;38929:78;38922:5;38919:89;38909:117;;39022:1;39019;39012:12;39037:114;39121:4;39114:5;39110:16;39103:5;39100:27;39090:55;;39141:1;39138;39131:12

Swarm Source

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