ETH Price: $3,392.56 (+4.87%)
Gas: 3 Gwei

Token

Awoo Items (AWOOI)
 

Overview

Max Total Supply

0 AWOOI

Holders

117

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AwooCollection

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/[email protected]/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/[email protected]/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

// File: contracts/OwnerAdminGuard.sol



pragma solidity 0.8.12;


contract OwnerAdminGuard is Ownable {
    address[2] private _admins;
    bool private _adminsSet;

    /// @notice Allows the owner to specify two addresses allowed to administer this contract
    /// @param admins A 2 item array of addresses
    function setAdmins(address[2] calldata admins) public {
        require(admins[0] != address(0) && admins[1] != address(0), "Invalid admin address");
        _admins = admins;
        _adminsSet = true;
    }

    function _isOwnerOrAdmin(address addr) internal virtual view returns(bool){
        return addr == owner() || (
            _adminsSet && (
                addr == _admins[0] || addr == _admins[1]
            )
        );
    }

    modifier onlyOwnerOrAdmin() {
        require(_isOwnerOrAdmin(msg.sender), "Not an owner or admin");
        _;
    }
}
// File: contracts/AuthorizedCallerGuard.sol



pragma solidity 0.8.12;


contract AuthorizedCallerGuard is OwnerAdminGuard {

    /// @dev Keeps track of which contracts are explicitly allowed to interact with certain super contract functionality
    mapping(address => bool) public authorizedContracts;

    event AuthorizedContractAdded(address contractAddress, address addedBy);
    event AuthorizedContractRemoved(address contractAddress, address removedBy);

    /// @notice Allows the owner or an admin to authorize another contract to override token accruals on an individual token level
    /// @param contractAddress The authorized contract address
    function addAuthorizedContract(address contractAddress) public onlyOwnerOrAdmin {
        require(_isContract(contractAddress), "Invalid contractAddress");
        authorizedContracts[contractAddress] = true;
        emit AuthorizedContractAdded(contractAddress, _msgSender());
    }

    /// @notice Allows the owner or an admin to remove an authorized contract
    /// @param contractAddress The contract address which should have its authorization revoked
    function removeAuthorizedContract(address contractAddress) public onlyOwnerOrAdmin {
        authorizedContracts[contractAddress] = false;
        emit AuthorizedContractRemoved(contractAddress, _msgSender());
    }

    /// @dev Derived from @openzeppelin/contracts/utils/Address.sol
    function _isContract(address account) internal virtual view returns (bool) {
        if(account == address(0)) return false;
        // 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;
    }

    function _isAuthorizedContract(address addr) internal virtual view returns(bool){
        return authorizedContracts[addr];
    }

    modifier onlyAuthorizedCaller() {
        require(_isOwnerOrAdmin(_msgSender()) || _isAuthorizedContract(_msgSender()), "Sender is not authorized");
        _;
    }

    modifier onlyAuthorizedContract() {
        require(_isAuthorizedContract(_msgSender()), "Sender is not authorized");
        _;
    }

}
// File: @openzeppelin/[email protected]/utils/Address.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        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/[email protected]/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/[email protected]/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/[email protected]/token/ERC1155/IERC1155Receiver.sol


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

pragma solidity ^0.8.0;


/**
 * @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/[email protected]/token/ERC1155/IERC1155.sol


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

pragma solidity ^0.8.0;


/**
 * @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: contracts/IAwooMintableCollection.sol



pragma solidity 0.8.12;


interface IAwooMintableCollection is IERC1155 {
    struct TokenDetail { bool SoftLimit; bool Active; }
    struct TokenCount { uint256 TokenId; uint256 Count; }

    function supportsInterface(bytes4 interfaceId) external view returns (bool);
    function mint(address to, uint256 id, uint256 qty) external;
    function mintBatch(address to, uint256[] memory ids, uint256[] memory quantities) external;
    function burn(address from, uint256 id, uint256 qty) external;
    function tokensOfOwner(address owner) external view returns (TokenCount[] memory);
    function totalMinted(uint256 id) external view returns(uint256);
    function totalSupply(uint256 id) external view returns (uint256);
    function exists(uint256 id) external view returns (bool);
    function addToken(TokenDetail calldata tokenDetail, string memory tokenUri) external returns(uint256);
    function setTokenUri(uint256 id, string memory tokenUri) external;
    function setTokenActive(uint256 id, bool active) external;
    function setBaseUri(string memory baseUri) external;
}
// File: @openzeppelin/[email protected]/token/ERC1155/extensions/IERC1155MetadataURI.sol


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

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/[email protected]/token/ERC1155/ERC1155.sol


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

pragma solidity ^0.8.0;







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

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

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _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];
    }

    /**
     * @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 {
        _setApprovalForAll(_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];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += 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];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += 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 `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

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

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, 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] += amounts[i];
        }

        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 `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

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

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, 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 from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

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

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

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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: @openzeppelin/[email protected]/token/ERC1155/extensions/ERC1155Supply.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] -= amounts[i];
            }
        }
    }
}

// File: @openzeppelin/[email protected]/utils/Strings.sol


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: contracts/AwooCollection.sol



pragma solidity 0.8.12;





contract AwooCollection is IAwooMintableCollection, ERC1155Supply, AuthorizedCallerGuard {
    using Strings for uint256;

    string public constant name = "Awoo Items";
    string public constant symbol = "AWOOI";

    uint16 public currentTokenId;
    bool public isActive;

    /// @notice Maps the tokenId of a specific mintable item to the details that define that item
    mapping(uint256 => TokenDetail) public tokenDetails;

    /// @notice Keeps track of the number of tokens that were burned to support "Soft" limits
    /// @dev Soft limits are the number of tokens available at any given time, so if 1 is burned, another can be minted
    mapping(uint256 => uint256) public tokenBurnCounts;

    /// @dev Allows us to have token-specific metadata uris that will override the baseUri
    mapping(uint256 => string) private _tokenUris;

    event TokenUriUpdated(uint256 indexed id, string newUri, address updatedBy);
    
    constructor(address awooStoreAddress, string memory baseUri) ERC1155(baseUri){
        // Allow the Awoo Store contract to interact with this contract to faciliate minting and burning
        addAuthorizedContract(awooStoreAddress);
    }

    /// @dev See {IERC165-supportsInterface}.
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155, IAwooMintableCollection) returns (bool) {
        return super.supportsInterface(interfaceId) ||
            interfaceId == type(IAwooMintableCollection).interfaceId ||
            interfaceId == type(IERC1155).interfaceId ||
            interfaceId == ERC1155Supply.totalSupply.selector ||
            interfaceId == ERC1155Supply.exists.selector;
    }

    /// @notice Allows authorized contracts to mints tokens to the specified recipient
    /// @param to The recipient address
    /// @param id The Id of the specific token to mint
    /// @param qty The number of specified tokens that should be minted
    function mint(address to, uint256 id, uint256 qty
    ) external whenActive onlyAuthorizedContract {
        _mint(to, id, qty, "");
    }

    /// @notice Allows authorized contracts to mint multiple different tokens to the specified recipient
    /// @param to The recipient address
    /// @param ids The Ids of the specific tokens to mint
    /// @param quantities The number of each of the specified tokens that should be minted
    function mintBatch(address to, uint256[] memory ids, uint256[] memory quantities
    ) external whenActive onlyAuthorizedContract {
        _mintBatch(to, ids, quantities, "");
    }

    /// @notice Burns the specified number of tokens.
    /// @notice Only the holder or an approved operator is authorized to burn
    /// @notice Operator approvals must have been explicitly allowed by the token holder
    /// @param from The account from which the specified tokens will be burned
    /// @param id The Id of the tokens that will be burned
    /// @param qty The number of specified tokens that will be burned
    function burn(address from, uint256 id, uint256 qty) external {
        require(exists(id), "Query for non-existent id");
        require(from == _msgSender() || isApprovedForAll(from, _msgSender()), "Not owner or approved");
        _burn(from, id, qty);
    }

    /// @notice Burns the specified number of each of the specified tokens.
    /// @notice Only the holder or an approved operator is authorized to burn
    /// @notice Operator approvals must have been explicitly allowed by the token holder
    /// @param from The account from which the specified tokens will be burned
    /// @param ids The Ids of the tokens that will be burned
    /// @param quantities The number of each of the specified tokens that will be burned
    function burnBatch(address from, uint256[] memory ids, uint256[] memory quantities) external {
        require(from == _msgSender() || isApprovedForAll(from, _msgSender()), "Not owner or approved");
        
        for(uint256 i; i < ids.length; i++){
            require(exists(ids[i]), "Query for non-existent id");
        }
        
        _burnBatch(from, ids, quantities);
    }

    /// @notice Returns the metadata uri for the specified token
    /// @dev By default, token-specific uris are given preference
    /// @param id The id of the token for which the uri should be returned
    /// @return A uri string
    function uri(uint256 id) public view override returns (string memory) {
        require(exists(id), "Query for non-existent id");
        return bytes(_tokenUris[id]).length > 0 ? _tokenUris[id] : string.concat(ERC1155.uri(id), id.toString(), ".json");
    }

    /// @notice Returns the number of each token held by the specified owner address
    /// @param owner The address of the token owner/holder
    /// @return An array of Tuple(uint256,uint256) indicating the number of tokens held
    function tokensOfOwner(address owner) external view returns (TokenCount[] memory) {
        TokenCount[] memory ownerTokenCounts = new TokenCount[](currentTokenId);
        
        for(uint256 i = 1; i <= currentTokenId; i++){
            uint256 count = balanceOf(owner, i);
            ownerTokenCounts[i-1] = TokenCount(i, count);
        }
        return ownerTokenCounts;
    }

    /// @notice Returns the total number of tokens minted for the specified token id
    /// @dev For tokens that have a soft limit, the number of burned tokens is included
    /// so the result is based on the total number of tokens minted, regardless of whether
    /// or not they were subsequently burned
    /// @param id The id of the token to query
    /// @return A uint256 value indicating the total number of tokens minted and burned for the specified token id 
    function totalMinted(uint256 id) isValidTokenId(id) external view returns(uint256) {
        TokenDetail memory tokenDetail = tokenDetails[id];
        
        if(tokenDetail.SoftLimit){
            return ERC1155Supply.totalSupply(id);
        }
        else {
            return (ERC1155Supply.totalSupply(id) + tokenBurnCounts[id]);
        }        
    }

    /// @notice Returns the current number of tokens that were minted and not burned
    /// @param id The id of the token to query
    /// @return A uint256 value indicating the number of tokens which have not been burned
    function totalSupply(uint256 id) public view virtual override(ERC1155Supply,IAwooMintableCollection) returns (uint256) {
        return ERC1155Supply.totalSupply(id);
    }

    /// @notice Determines whether or not the specified token id is valid and at least 1 has been minted
    /// @param id The id of the token to validate
    /// @return A boolean value indicating the existence of the specified token id
    function exists(uint256 id) public view virtual override(ERC1155Supply,IAwooMintableCollection) returns (bool) {
        return ERC1155Supply.exists(id);
    }

    /// @notice Allows authorized individuals or contracts to add new tokens that can be minted    
    /// @param tokenDetail An object describing the token being added
    /// @param tokenUri The specific uri to use for the token being added
    /// @return A uint256 value representing the id of the token
    function addToken(TokenDetail calldata tokenDetail, string memory tokenUri) external isAuthorized returns(uint256){
        currentTokenId++;
        if(bytes(tokenUri).length > 0) {
            _tokenUris[currentTokenId] = tokenUri;
        }
        tokenDetails[currentTokenId] = tokenDetail;
        return currentTokenId;
    }

    /// @notice Allows authorized individuals or contracts to set the base metadata uri
    /// @dev It is assumed that the baseUri value will end with /
    /// @param baseUri The uri to use as the base for all tokens that don't have a token-specific uri
    function setBaseUri(string memory baseUri) external isAuthorized {
        _setURI(baseUri);
    }

    /// @notice Allows authorized individuals or contracts to set the base metadata uri on a per token level
    /// @param id The id of the token
    /// @param tokenUri The uri to use for the specified token id
    function setTokenUri(uint256 id, string memory tokenUri) external isAuthorized isValidTokenId(id) {        
        _tokenUris[id] = tokenUri;
        emit TokenUriUpdated(id, tokenUri, _msgSender());
    }

    /// @notice Allows authorized individuals or contracts to activate/deactivate minting of the specified token id
    /// @param id The id of the token
    /// @param active A boolean value indicating whether or not minting is allowed for this token
    function setTokenActive(uint256 id, bool active) external isAuthorized isValidTokenId(id) {
        tokenDetails[id].Active = active;
    }

    /// @notice Allows authorized individuals to activate/deactivate minting of all tokens
    /// @param active A boolean value indicating whether or not minting is allowed
    function setActive(bool active) external onlyOwnerOrAdmin {
        isActive = active;
    }

    function rescueEth() external onlyOwner {
        require(payable(owner()).send(address(this).balance));
    }

    /// @dev Hook to allows us to count the burned tokens even if they're just transferred to the zero address
    function _beforeTokenTransfer(address operator, address from, address to, uint256[] memory ids,
        uint256[] memory amounts, bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                tokenBurnCounts[ids[i]] += amounts[i];
            }
        }
    }

    modifier whenActive(){
        require(isActive, "Minting inactive");
        _;
    }

    modifier isValidTokenId(uint256 id) {
        require(id <= currentTokenId, "Invalid tokenId");
        _;
    }

    modifier isValidTokenIds(uint256[] memory ids){
        for(uint256 i = 0; i < ids.length; i++){
            require(ids[i] <= currentTokenId, "Invalid tokenId");
        }
        _;
    }

    modifier isAuthorized() {
        require(_isAuthorizedContract(_msgSender()) || _isOwnerOrAdmin(_msgSender()), "Unauthorized");
        _;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"awooStoreAddress","type":"address"},{"internalType":"string","name":"baseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"address","name":"contractAddress","type":"address"},{"indexed":false,"internalType":"address","name":"addedBy","type":"address"}],"name":"AuthorizedContractAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"contractAddress","type":"address"},{"indexed":false,"internalType":"address","name":"removedBy","type":"address"}],"name":"AuthorizedContractRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"string","name":"newUri","type":"string"},{"indexed":false,"internalType":"address","name":"updatedBy","type":"address"}],"name":"TokenUriUpdated","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"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"addAuthorizedContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"bool","name":"SoftLimit","type":"bool"},{"internalType":"bool","name":"Active","type":"bool"}],"internalType":"struct IAwooMintableCollection.TokenDetail","name":"tokenDetail","type":"tuple"},{"internalType":"string","name":"tokenUri","type":"string"}],"name":"addToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"authorizedContracts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"removeAuthorizedContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueEth","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":"bool","name":"active","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[2]","name":"admins","type":"address[2]"}],"name":"setAdmins","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bool","name":"active","type":"bool"}],"name":"setTokenActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"tokenUri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenBurnCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenDetails","outputs":[{"internalType":"bool","name":"SoftLimit","type":"bool"},{"internalType":"bool","name":"Active","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"components":[{"internalType":"uint256","name":"TokenId","type":"uint256"},{"internalType":"uint256","name":"Count","type":"uint256"}],"internalType":"struct IAwooMintableCollection.TokenCount[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"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":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620040f0380380620040f083398101604081905262000034916200033d565b8062000040816200005f565b506200004c3362000078565b6200005782620000ca565b50506200047a565b80516200007490600290602084019062000281565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620000d533620001f3565b620001275760405162461bcd60e51b815260206004820152601560248201527f4e6f7420616e206f776e6572206f722061646d696e000000000000000000000060448201526064015b60405180910390fd5b620001328162000261565b620001805760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420636f6e74726163744164647265737300000000000000000060448201526064016200011e565b6001600160a01b0381166000908152600860205260409020805460ff191660011790557ff8b6e5731f94977c9f6aca99256be7afb84b3fcf9efee0cddd9822f1cbfe2a4481620001cd3390565b604080516001600160a01b0393841681529290911660208301520160405180910390a150565b6000620002086004546001600160a01b031690565b6001600160a01b0316826001600160a01b031614806200025b575060075460ff1680156200025b57506005546001600160a01b03838116911614806200025b57506006546001600160a01b038381169116145b92915050565b60006001600160a01b0382166200027a57506000919050565b503b151590565b8280546200028f906200043d565b90600052602060002090601f016020900481019282620002b35760008555620002fe565b82601f10620002ce57805160ff1916838001178555620002fe565b82800160010185558215620002fe579182015b82811115620002fe578251825591602001919060010190620002e1565b506200030c92915062000310565b5090565b5b808211156200030c576000815560010162000311565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156200035157600080fd5b82516001600160a01b03811681146200036957600080fd5b602084810151919350906001600160401b03808211156200038957600080fd5b818601915086601f8301126200039e57600080fd5b815181811115620003b357620003b362000327565b604051601f8201601f19908116603f01168101908382118183101715620003de57620003de62000327565b816040528281528986848701011115620003f757600080fd5b600093505b828410156200041b5784840186015181850187015292850192620003fc565b828411156200042d5760008684830101525b8096505050505050509250929050565b600181811c908216806200045257607f821691505b602082108114156200047457634e487b7160e01b600052602260045260246000fd5b50919050565b613c66806200048a6000396000f3fe608060405234801561001057600080fd5b506004361061023f5760003560e01c80638da5cb5b11610145578063d5b9221b116100bd578063f242432a1161008c578063f5298aca11610071578063f5298aca14610588578063fc314e311461059b578063ffc54ea4146105de57600080fd5b8063f242432a14610562578063f2fde38b1461057557600080fd5b8063d5b9221b146104dd578063d81d0a1514610500578063e6b165ed14610513578063e985e9c51461052657600080fd5b8063a0bcfc7f11610114578063acec338a116100f9578063acec338a146104af578063bd85b039146104c2578063ce31a06b146104d557600080fd5b8063a0bcfc7f14610489578063a22cb4651461049c57600080fd5b80638da5cb5b1461040c57806395d89b411461042757806398eaa4a7146104635780639d7f4ebf1461047657600080fd5b80632eb2c2d6116101d857806357f7789e116101a75780636b20c4541161018c5780636b20c454146103d1578063715018a6146103e45780638462151c146103ec57600080fd5b806357f7789e1461039e5780635cdee78c146103b157600080fd5b80632eb2c2d6146103455780634d451c07146103585780634e1273f41461036b5780634f558e791461038b57600080fd5b80630a6f94fc116102145780630a6f94fc146102f75780630e89341c1461030c578063156e29f61461031f57806322f3e2d41461033257600080fd5b80629a9b7b14610244578062fdd58e1461026a57806301ffc9a71461028b57806306fdde03146102ae575b600080fd5b6009546102529061ffff1681565b60405161ffff90911681526020015b60405180910390f35b61027d610278366004613066565b6105f1565b604051908152602001610261565b61029e6102993660046130be565b61069a565b6040519015158152602001610261565b6102ea6040518060400160405280600a81526020017f41776f6f204974656d730000000000000000000000000000000000000000000081525081565b604051610261919061315c565b61030a61030536600461316f565b6107db565b005b6102ea61031a366004613191565b6108a2565b61030a61032d3660046131aa565b6109ed565b60095461029e9062010000900460ff1681565b61030a61035336600461337e565b610ad4565b61027d610366366004613428565b610b76565b61037e61037936600461347e565b610c6e565b604051610261919061357a565b61029e610399366004613191565b610dac565b61030a6103ac36600461358d565b610dc2565b61027d6103bf366004613191565b600b6020526000908152604090205481565b61030a6103df3660046135be565b610edd565b61030a610fdd565b6103ff6103fa366004613632565b611043565b604051610261919061364d565b6004546040516001600160a01b039091168152602001610261565b6102ea6040518060400160405280600581526020017f41574f4f4900000000000000000000000000000000000000000000000000000081525081565b61030a610471366004613632565b611127565b61027d610484366004613191565b611261565b61030a61049736600461369c565b611338565b61030a6104aa3660046136df565b6113a8565b61030a6104bd366004613716565b6113b7565b61027d6104d0366004613191565b611444565b61030a611458565b61029e6104eb366004613632565b60086020526000908152604090205460ff1681565b61030a61050e3660046135be565b6114e3565b61030a610521366004613632565b6115ab565b61029e610534366004613733565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61030a610570366004613766565b611666565b61030a610583366004613632565b611701565b61030a6105963660046131aa565b6117e0565b6105c76105a9366004613191565b600a6020526000908152604090205460ff8082169161010090041682565b604080519215158352901515602083015201610261565b61030a6105ec3660046137cb565b6118a8565b60006001600160a01b0383166106745760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006106a5826119a9565b806106f157507fffffffff0000000000000000000000000000000000000000000000000000000082167f97a3d32f00000000000000000000000000000000000000000000000000000000145b8061073d57507fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a2600000000000000000000000000000000000000000000000000000000145b8061078957507fffffffff0000000000000000000000000000000000000000000000000000000082167fbd85b03900000000000000000000000000000000000000000000000000000000145b806107d557507fffffffff0000000000000000000000000000000000000000000000000000000082167f4f558e7900000000000000000000000000000000000000000000000000000000145b92915050565b60006107ea6020830183613632565b6001600160a01b03161415801561081a5750600061080e6040830160208401613632565b6001600160a01b031614155b6108665760405162461bcd60e51b815260206004820152601560248201527f496e76616c69642061646d696e20616464726573730000000000000000000000604482015260640161066b565b6108736005826002612f53565b5050600780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60606108ad82610dac565b6108f95760405162461bcd60e51b815260206004820152601960248201527f517565727920666f72206e6f6e2d6578697374656e7420696400000000000000604482015260640161066b565b6000828152600c6020526040812080546109129061381f565b9050116109505761092282611a8c565b61092b83611a9b565b60405160200161093c92919061386d565b6040516020818303038152906040526107d5565b6000828152600c6020526040902080546109699061381f565b80601f01602080910402602001604051908101604052809291908181526020018280546109959061381f565b80156109e25780601f106109b7576101008083540402835291602001916109e2565b820191906000526020600020905b8154815290600101906020018083116109c557829003601f168201915b505050505092915050565b60095462010000900460ff16610a455760405162461bcd60e51b815260206004820152601060248201527f4d696e74696e6720696e61637469766500000000000000000000000000000000604482015260640161066b565b610a68335b6001600160a01b031660009081526008602052604090205460ff1690565b610ab45760405162461bcd60e51b815260206004820152601860248201527f53656e646572206973206e6f7420617574686f72697a65640000000000000000604482015260640161066b565b610acf83838360405180602001604052806000815250611bd5565b505050565b6001600160a01b038516331480610af05750610af08533610534565b610b625760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606482015260840161066b565b610b6f8585858585611d01565b5050505050565b6000610b8133610a4a565b80610b905750610b9033611fad565b610bdc5760405162461bcd60e51b815260206004820152600c60248201527f556e617574686f72697a65640000000000000000000000000000000000000000604482015260640161066b565b6009805461ffff16906000610bf0836138f3565b91906101000a81548161ffff021916908361ffff16021790555050600082511115610c3d5760095461ffff166000908152600c602090815260409091208351610c3b92850190612fc1565b505b60095461ffff166000908152600a602052604090208390610c5e8282613915565b505060095461ffff169392505050565b60608151835114610ce75760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d617463680000000000000000000000000000000000000000000000606482015260840161066b565b6000835167ffffffffffffffff811115610d0357610d036131dd565b604051908082528060200260200182016040528015610d2c578160200160208202803683370190505b50905060005b8451811015610da457610d77858281518110610d5057610d506137f0565b6020026020010151858381518110610d6a57610d6a6137f0565b60200260200101516105f1565b828281518110610d8957610d896137f0565b6020908102919091010152610d9d81613996565b9050610d32565b509392505050565b60008181526003602052604081205415156107d5565b610dcb33610a4a565b80610dda5750610dda33611fad565b610e265760405162461bcd60e51b815260206004820152600c60248201527f556e617574686f72697a65640000000000000000000000000000000000000000604482015260640161066b565b600954829061ffff16811115610e7e5760405162461bcd60e51b815260206004820152600f60248201527f496e76616c696420746f6b656e49640000000000000000000000000000000000604482015260640161066b565b6000838152600c602090815260409091208351610e9d92850190612fc1565b50827fe7df6920574ba9af4cdc9c4e406c58d88cf60ed687f53ed60ad1540e67a4dbcf8333604051610ed09291906139cf565b60405180910390a2505050565b6001600160a01b038316331480610ef95750610ef98333610534565b610f455760405162461bcd60e51b815260206004820152601560248201527f4e6f74206f776e6572206f7220617070726f7665640000000000000000000000604482015260640161066b565b60005b8251811015610fd157610f73838281518110610f6657610f666137f0565b6020026020010151610dac565b610fbf5760405162461bcd60e51b815260206004820152601960248201527f517565727920666f72206e6f6e2d6578697374656e7420696400000000000000604482015260640161066b565b80610fc981613996565b915050610f48565b50610acf838383612014565b6004546001600160a01b031633146110375760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161066b565b61104160006122a3565b565b60095460609060009061ffff1667ffffffffffffffff811115611068576110686131dd565b6040519080825280602002602001820160405280156110ad57816020015b60408051808201909152600080825260208201528152602001906001900390816110865790505b50905060015b60095461ffff1681116111205760006110cc85836105f1565b9050604051806040016040528083815260200182815250836001846110f191906139fa565b81518110611101576111016137f0565b602002602001018190525050808061111890613996565b9150506110b3565b5092915050565b61113033611fad565b61117c5760405162461bcd60e51b815260206004820152601560248201527f4e6f7420616e206f776e6572206f722061646d696e0000000000000000000000604482015260640161066b565b6111858161230d565b6111d15760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420636f6e747261637441646472657373000000000000000000604482015260640161066b565b6001600160a01b038116600090815260086020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557ff8b6e5731f94977c9f6aca99256be7afb84b3fcf9efee0cddd9822f1cbfe2a448161123b3390565b604080516001600160a01b0393841681529290911660208301520160405180910390a150565b600954600090829061ffff168111156112bc5760405162461bcd60e51b815260206004820152600f60248201527f496e76616c696420746f6b656e49640000000000000000000000000000000000604482015260640161066b565b6000838152600a602090815260409182902082518084019093525460ff80821615801585526101009092041615159183019190915261130d576000848152600360205260409020545b925050611332565b6000848152600b60209081526040808320546003909252909120546113059190613a11565b50919050565b61134133610a4a565b80611350575061135033611fad565b61139c5760405162461bcd60e51b815260206004820152600c60248201527f556e617574686f72697a65640000000000000000000000000000000000000000604482015260640161066b565b6113a58161232c565b50565b6113b333838361233f565b5050565b6113c033611fad565b61140c5760405162461bcd60e51b815260206004820152601560248201527f4e6f7420616e206f776e6572206f722061646d696e0000000000000000000000604482015260640161066b565b6009805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b6000818152600360205260408120546107d5565b6004546001600160a01b031633146114b25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161066b565b6004546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505061104157600080fd5b60095462010000900460ff1661153b5760405162461bcd60e51b815260206004820152601060248201527f4d696e74696e6720696e61637469766500000000000000000000000000000000604482015260640161066b565b61154433610a4a565b6115905760405162461bcd60e51b815260206004820152601860248201527f53656e646572206973206e6f7420617574686f72697a65640000000000000000604482015260640161066b565b610acf83838360405180602001604052806000815250612452565b6115b433611fad565b6116005760405162461bcd60e51b815260206004820152601560248201527f4e6f7420616e206f776e6572206f722061646d696e0000000000000000000000604482015260640161066b565b6001600160a01b038116600090815260086020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557ff06321695c86a1fbc00e739847170ccd4e7a383985e5636c16f079a2280384b9813361123b565b6001600160a01b03851633148061168257506116828533610534565b6116f45760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f7665640000000000000000000000000000000000000000000000606482015260840161066b565b610b6f8585858585612658565b6004546001600160a01b0316331461175b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161066b565b6001600160a01b0381166117d75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161066b565b6113a5816122a3565b6117e982610dac565b6118355760405162461bcd60e51b815260206004820152601960248201527f517565727920666f72206e6f6e2d6578697374656e7420696400000000000000604482015260640161066b565b6001600160a01b03831633148061185157506118518333610534565b61189d5760405162461bcd60e51b815260206004820152601560248201527f4e6f74206f776e6572206f7220617070726f7665640000000000000000000000604482015260640161066b565b610acf838383612821565b6118b133610a4a565b806118c057506118c033611fad565b61190c5760405162461bcd60e51b815260206004820152600c60248201527f556e617574686f72697a65640000000000000000000000000000000000000000604482015260640161066b565b600954829061ffff168111156119645760405162461bcd60e51b815260206004820152600f60248201527f496e76616c696420746f6b656e49640000000000000000000000000000000000604482015260640161066b565b506000918252600a60205260409091208054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a26000000000000000000000000000000000000000000000000000000001480611a3c57507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b806107d557507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146107d5565b6060600280546109699061381f565b606081611adb57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611b055780611aef81613996565b9150611afe9050600a83613a58565b9150611adf565b60008167ffffffffffffffff811115611b2057611b206131dd565b6040519080825280601f01601f191660200182016040528015611b4a576020820181803683370190505b5090505b8415611bcd57611b5f6001836139fa565b9150611b6c600a86613a6c565b611b77906030613a11565b60f81b818381518110611b8c57611b8c6137f0565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611bc6600a86613a58565b9450611b4e565b949350505050565b6001600160a01b038416611c515760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161066b565b33611c7181600087611c62886129cd565b611c6b886129cd565b87612a18565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611ca1908490613a11565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610b6f81600087878787612aab565b8151835114611d785760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d61746368000000000000000000000000000000000000000000000000606482015260840161066b565b6001600160a01b038416611df45760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161066b565b33611e03818787878787612a18565b60005b8451811015611f3f576000858281518110611e2357611e236137f0565b602002602001015190506000858381518110611e4157611e416137f0565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611ee75760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e7366657200000000000000000000000000000000000000000000606482015260840161066b565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611f24908490613a11565b9250508190555050505080611f3890613996565b9050611e06565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f8f929190613a80565b60405180910390a4611fa5818787878787612cce565b505050505050565b6000611fc16004546001600160a01b031690565b6001600160a01b0316826001600160a01b031614806107d5575060075460ff1680156107d557506005546001600160a01b03838116911614806107d55750506006546001600160a01b0390811691161490565b6001600160a01b0383166120905760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161066b565b80518251146121075760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d61746368000000000000000000000000000000000000000000000000606482015260840161066b565b600033905061212a81856000868660405180602001604052806000815250612a18565b60005b835181101561224457600084828151811061214a5761214a6137f0565b602002602001015190506000848381518110612168576121686137f0565b602090810291909101810151600084815280835260408082206001600160a01b038c16835290935291909120549091508181101561220d5760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e636500000000000000000000000000000000000000000000000000000000606482015260840161066b565b6000928352602083815260408085206001600160a01b038b168652909152909220910390558061223c81613996565b91505061212d565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612295929190613a80565b60405180910390a450505050565b600480546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b03821661232557506000919050565b503b151590565b80516113b3906002906020840190612fc1565b816001600160a01b0316836001600160a01b031614156123c75760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c660000000000000000000000000000000000000000000000606482015260840161066b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166124ce5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161066b565b81518351146125455760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d61746368000000000000000000000000000000000000000000000000606482015260840161066b565b3361255581600087878787612a18565b60005b84518110156125f057838181518110612573576125736137f0565b6020026020010151600080878481518110612590576125906137f0565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546125d89190613a11565b909155508190506125e881613996565b915050612558565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612641929190613a80565b60405180910390a4610b6f81600087878787612cce565b6001600160a01b0384166126d45760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161066b565b336126e4818787611c62886129cd565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561277b5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e7366657200000000000000000000000000000000000000000000606482015260840161066b565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906127b8908490613a11565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612818828888888888612aab565b50505050505050565b6001600160a01b03831661289d5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161066b565b336128cc818560006128ae876129cd565b6128b7876129cd565b60405180602001604052806000815250612a18565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156129625760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e636500000000000000000000000000000000000000000000000000000000606482015260840161066b565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612a0757612a076137f0565b602090810291909101015292915050565b612a26868686868686612e47565b6001600160a01b038416611fa55760005b835181101561281857828181518110612a5257612a526137f0565b6020026020010151600b6000868481518110612a7057612a706137f0565b602002602001015181526020019081526020016000206000828254612a959190613a11565b90915550612aa4905081613996565b9050612a37565b6001600160a01b0384163b15611fa5576040517ff23a6e610000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063f23a6e6190612b089089908990889088908890600401613aae565b6020604051808303816000875af1925050508015612b61575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612b5e91810190613af1565b60015b612c1757612b6d613b0e565b806308c379a01415612ba75750612b82613b2a565b80612b8d5750612ba9565b8060405162461bcd60e51b815260040161066b919061315c565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e746572000000000000000000000000606482015260840161066b565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e6100000000000000000000000000000000000000000000000000000000146128185760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e73000000000000000000000000000000000000000000000000606482015260840161066b565b6001600160a01b0384163b15611fa5576040517fbc197c810000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063bc197c8190612d2b9089908990889088908890600401613bd2565b6020604051808303816000875af1925050508015612d84575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612d8191810190613af1565b60015b612d9057612b6d613b0e565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c8100000000000000000000000000000000000000000000000000000000146128185760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e73000000000000000000000000000000000000000000000000606482015260840161066b565b6001600160a01b038516612ece5760005b8351811015612ecc57828181518110612e7357612e736137f0565b602002602001015160036000868481518110612e9157612e916137f0565b602002602001015181526020019081526020016000206000828254612eb69190613a11565b90915550612ec5905081613996565b9050612e58565b505b6001600160a01b038416611fa55760005b835181101561281857828181518110612efa57612efa6137f0565b602002602001015160036000868481518110612f1857612f186137f0565b602002602001015181526020019081526020016000206000828254612f3d91906139fa565b90915550612f4c905081613996565b9050612edf565b8260028101928215612fb1579160200282015b82811115612fb15781547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03843516178255602090920191600190910190612f66565b50612fbd929150613035565b5090565b828054612fcd9061381f565b90600052602060002090601f016020900481019282612fef5760008555612fb1565b82601f1061300857805160ff1916838001178555612fb1565b82800160010185558215612fb1579182015b82811115612fb157825182559160200191906001019061301a565b5b80821115612fbd5760008155600101613036565b80356001600160a01b038116811461306157600080fd5b919050565b6000806040838503121561307957600080fd5b6130828361304a565b946020939093013593505050565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146113a557600080fd5b6000602082840312156130d057600080fd5b81356130db81613090565b9392505050565b60005b838110156130fd5781810151838201526020016130e5565b8381111561310c576000848401525b50505050565b6000815180845261312a8160208601602086016130e2565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006130db6020830184613112565b60006040828403121561318157600080fd5b8260408301111561133257600080fd5b6000602082840312156131a357600080fd5b5035919050565b6000806000606084860312156131bf57600080fd5b6131c88461304a565b95602085013595506040909401359392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff82111715613250576132506131dd565b6040525050565b600067ffffffffffffffff821115613271576132716131dd565b5060051b60200190565b600082601f83011261328c57600080fd5b8135602061329982613257565b6040516132a6828261320c565b83815260059390931b85018201928281019150868411156132c657600080fd5b8286015b848110156132e157803583529183019183016132ca565b509695505050505050565b600082601f8301126132fd57600080fd5b813567ffffffffffffffff811115613317576133176131dd565b60405161334c60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f850116018261320c565b81815284602083860101111561336157600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a0868803121561339657600080fd5b61339f8661304a565b94506133ad6020870161304a565b9350604086013567ffffffffffffffff808211156133ca57600080fd5b6133d689838a0161327b565b945060608801359150808211156133ec57600080fd5b6133f889838a0161327b565b9350608088013591508082111561340e57600080fd5b5061341b888289016132ec565b9150509295509295909350565b600080828403606081121561343c57600080fd5b604081121561344a57600080fd5b50829150604083013567ffffffffffffffff81111561346857600080fd5b613474858286016132ec565b9150509250929050565b6000806040838503121561349157600080fd5b823567ffffffffffffffff808211156134a957600080fd5b818501915085601f8301126134bd57600080fd5b813560206134ca82613257565b6040516134d7828261320c565b83815260059390931b85018201928281019150898411156134f757600080fd5b948201945b8386101561351c5761350d8661304a565b825294820194908201906134fc565b9650508601359250508082111561353257600080fd5b506134748582860161327b565b600081518084526020808501945080840160005b8381101561356f57815187529582019590820190600101613553565b509495945050505050565b6020815260006130db602083018461353f565b600080604083850312156135a057600080fd5b82359150602083013567ffffffffffffffff81111561346857600080fd5b6000806000606084860312156135d357600080fd5b6135dc8461304a565b9250602084013567ffffffffffffffff808211156135f957600080fd5b6136058783880161327b565b9350604086013591508082111561361b57600080fd5b506136288682870161327b565b9150509250925092565b60006020828403121561364457600080fd5b6130db8261304a565b602080825282518282018190526000919060409081850190868401855b8281101561368f5781518051855286015186850152928401929085019060010161366a565b5091979650505050505050565b6000602082840312156136ae57600080fd5b813567ffffffffffffffff8111156136c557600080fd5b611bcd848285016132ec565b80151581146113a557600080fd5b600080604083850312156136f257600080fd5b6136fb8361304a565b9150602083013561370b816136d1565b809150509250929050565b60006020828403121561372857600080fd5b81356130db816136d1565b6000806040838503121561374657600080fd5b61374f8361304a565b915061375d6020840161304a565b90509250929050565b600080600080600060a0868803121561377e57600080fd5b6137878661304a565b94506137956020870161304a565b93506040860135925060608601359150608086013567ffffffffffffffff8111156137bf57600080fd5b61341b888289016132ec565b600080604083850312156137de57600080fd5b82359150602083013561370b816136d1565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600181811c9082168061383357607f821691505b60208210811415611332577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000835161387f8184602088016130e2565b8351908301906138938183602088016130e2565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061ffff8083168181141561390b5761390b6138c4565b6001019392505050565b8135613920816136d1565b81547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811691151560ff169182178355602084013561395e816136d1565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00009190911690911790151560081b61ff001617905550565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139c8576139c86138c4565b5060010190565b6040815260006139e26040830185613112565b90506001600160a01b03831660208301529392505050565b600082821015613a0c57613a0c6138c4565b500390565b60008219821115613a2457613a246138c4565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613a6757613a67613a29565b500490565b600082613a7b57613a7b613a29565b500690565b604081526000613a93604083018561353f565b8281036020840152613aa5818561353f565b95945050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a06080830152613ae660a0830184613112565b979650505050505050565b600060208284031215613b0357600080fd5b81516130db81613090565b600060033d1115613b275760046000803e5060005160e01c5b90565b600060443d1015613b385790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff8160248401118184111715613b8657505050505090565b8285019150815181811115613b9e5750505050505090565b843d8701016020828501011115613bb85750505050505090565b613bc76020828601018761320c565b509095945050505050565b60006001600160a01b03808816835280871660208401525060a06040830152613bfe60a083018661353f565b8281036060840152613c10818661353f565b90508281036080840152613c248185613112565b9897505050505050505056fea2646970667358221220422a7cac6b1ded5f9bcafd89dada7fcc54558f36c32c3d3a1717f7e9383d549264736f6c634300080c0033000000000000000000000000e262cc4e40c15223c1967aee3b6345e4ddc9f4d0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061023f5760003560e01c80638da5cb5b11610145578063d5b9221b116100bd578063f242432a1161008c578063f5298aca11610071578063f5298aca14610588578063fc314e311461059b578063ffc54ea4146105de57600080fd5b8063f242432a14610562578063f2fde38b1461057557600080fd5b8063d5b9221b146104dd578063d81d0a1514610500578063e6b165ed14610513578063e985e9c51461052657600080fd5b8063a0bcfc7f11610114578063acec338a116100f9578063acec338a146104af578063bd85b039146104c2578063ce31a06b146104d557600080fd5b8063a0bcfc7f14610489578063a22cb4651461049c57600080fd5b80638da5cb5b1461040c57806395d89b411461042757806398eaa4a7146104635780639d7f4ebf1461047657600080fd5b80632eb2c2d6116101d857806357f7789e116101a75780636b20c4541161018c5780636b20c454146103d1578063715018a6146103e45780638462151c146103ec57600080fd5b806357f7789e1461039e5780635cdee78c146103b157600080fd5b80632eb2c2d6146103455780634d451c07146103585780634e1273f41461036b5780634f558e791461038b57600080fd5b80630a6f94fc116102145780630a6f94fc146102f75780630e89341c1461030c578063156e29f61461031f57806322f3e2d41461033257600080fd5b80629a9b7b14610244578062fdd58e1461026a57806301ffc9a71461028b57806306fdde03146102ae575b600080fd5b6009546102529061ffff1681565b60405161ffff90911681526020015b60405180910390f35b61027d610278366004613066565b6105f1565b604051908152602001610261565b61029e6102993660046130be565b61069a565b6040519015158152602001610261565b6102ea6040518060400160405280600a81526020017f41776f6f204974656d730000000000000000000000000000000000000000000081525081565b604051610261919061315c565b61030a61030536600461316f565b6107db565b005b6102ea61031a366004613191565b6108a2565b61030a61032d3660046131aa565b6109ed565b60095461029e9062010000900460ff1681565b61030a61035336600461337e565b610ad4565b61027d610366366004613428565b610b76565b61037e61037936600461347e565b610c6e565b604051610261919061357a565b61029e610399366004613191565b610dac565b61030a6103ac36600461358d565b610dc2565b61027d6103bf366004613191565b600b6020526000908152604090205481565b61030a6103df3660046135be565b610edd565b61030a610fdd565b6103ff6103fa366004613632565b611043565b604051610261919061364d565b6004546040516001600160a01b039091168152602001610261565b6102ea6040518060400160405280600581526020017f41574f4f4900000000000000000000000000000000000000000000000000000081525081565b61030a610471366004613632565b611127565b61027d610484366004613191565b611261565b61030a61049736600461369c565b611338565b61030a6104aa3660046136df565b6113a8565b61030a6104bd366004613716565b6113b7565b61027d6104d0366004613191565b611444565b61030a611458565b61029e6104eb366004613632565b60086020526000908152604090205460ff1681565b61030a61050e3660046135be565b6114e3565b61030a610521366004613632565b6115ab565b61029e610534366004613733565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61030a610570366004613766565b611666565b61030a610583366004613632565b611701565b61030a6105963660046131aa565b6117e0565b6105c76105a9366004613191565b600a6020526000908152604090205460ff8082169161010090041682565b604080519215158352901515602083015201610261565b61030a6105ec3660046137cb565b6118a8565b60006001600160a01b0383166106745760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006106a5826119a9565b806106f157507fffffffff0000000000000000000000000000000000000000000000000000000082167f97a3d32f00000000000000000000000000000000000000000000000000000000145b8061073d57507fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a2600000000000000000000000000000000000000000000000000000000145b8061078957507fffffffff0000000000000000000000000000000000000000000000000000000082167fbd85b03900000000000000000000000000000000000000000000000000000000145b806107d557507fffffffff0000000000000000000000000000000000000000000000000000000082167f4f558e7900000000000000000000000000000000000000000000000000000000145b92915050565b60006107ea6020830183613632565b6001600160a01b03161415801561081a5750600061080e6040830160208401613632565b6001600160a01b031614155b6108665760405162461bcd60e51b815260206004820152601560248201527f496e76616c69642061646d696e20616464726573730000000000000000000000604482015260640161066b565b6108736005826002612f53565b5050600780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60606108ad82610dac565b6108f95760405162461bcd60e51b815260206004820152601960248201527f517565727920666f72206e6f6e2d6578697374656e7420696400000000000000604482015260640161066b565b6000828152600c6020526040812080546109129061381f565b9050116109505761092282611a8c565b61092b83611a9b565b60405160200161093c92919061386d565b6040516020818303038152906040526107d5565b6000828152600c6020526040902080546109699061381f565b80601f01602080910402602001604051908101604052809291908181526020018280546109959061381f565b80156109e25780601f106109b7576101008083540402835291602001916109e2565b820191906000526020600020905b8154815290600101906020018083116109c557829003601f168201915b505050505092915050565b60095462010000900460ff16610a455760405162461bcd60e51b815260206004820152601060248201527f4d696e74696e6720696e61637469766500000000000000000000000000000000604482015260640161066b565b610a68335b6001600160a01b031660009081526008602052604090205460ff1690565b610ab45760405162461bcd60e51b815260206004820152601860248201527f53656e646572206973206e6f7420617574686f72697a65640000000000000000604482015260640161066b565b610acf83838360405180602001604052806000815250611bd5565b505050565b6001600160a01b038516331480610af05750610af08533610534565b610b625760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606482015260840161066b565b610b6f8585858585611d01565b5050505050565b6000610b8133610a4a565b80610b905750610b9033611fad565b610bdc5760405162461bcd60e51b815260206004820152600c60248201527f556e617574686f72697a65640000000000000000000000000000000000000000604482015260640161066b565b6009805461ffff16906000610bf0836138f3565b91906101000a81548161ffff021916908361ffff16021790555050600082511115610c3d5760095461ffff166000908152600c602090815260409091208351610c3b92850190612fc1565b505b60095461ffff166000908152600a602052604090208390610c5e8282613915565b505060095461ffff169392505050565b60608151835114610ce75760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d617463680000000000000000000000000000000000000000000000606482015260840161066b565b6000835167ffffffffffffffff811115610d0357610d036131dd565b604051908082528060200260200182016040528015610d2c578160200160208202803683370190505b50905060005b8451811015610da457610d77858281518110610d5057610d506137f0565b6020026020010151858381518110610d6a57610d6a6137f0565b60200260200101516105f1565b828281518110610d8957610d896137f0565b6020908102919091010152610d9d81613996565b9050610d32565b509392505050565b60008181526003602052604081205415156107d5565b610dcb33610a4a565b80610dda5750610dda33611fad565b610e265760405162461bcd60e51b815260206004820152600c60248201527f556e617574686f72697a65640000000000000000000000000000000000000000604482015260640161066b565b600954829061ffff16811115610e7e5760405162461bcd60e51b815260206004820152600f60248201527f496e76616c696420746f6b656e49640000000000000000000000000000000000604482015260640161066b565b6000838152600c602090815260409091208351610e9d92850190612fc1565b50827fe7df6920574ba9af4cdc9c4e406c58d88cf60ed687f53ed60ad1540e67a4dbcf8333604051610ed09291906139cf565b60405180910390a2505050565b6001600160a01b038316331480610ef95750610ef98333610534565b610f455760405162461bcd60e51b815260206004820152601560248201527f4e6f74206f776e6572206f7220617070726f7665640000000000000000000000604482015260640161066b565b60005b8251811015610fd157610f73838281518110610f6657610f666137f0565b6020026020010151610dac565b610fbf5760405162461bcd60e51b815260206004820152601960248201527f517565727920666f72206e6f6e2d6578697374656e7420696400000000000000604482015260640161066b565b80610fc981613996565b915050610f48565b50610acf838383612014565b6004546001600160a01b031633146110375760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161066b565b61104160006122a3565b565b60095460609060009061ffff1667ffffffffffffffff811115611068576110686131dd565b6040519080825280602002602001820160405280156110ad57816020015b60408051808201909152600080825260208201528152602001906001900390816110865790505b50905060015b60095461ffff1681116111205760006110cc85836105f1565b9050604051806040016040528083815260200182815250836001846110f191906139fa565b81518110611101576111016137f0565b602002602001018190525050808061111890613996565b9150506110b3565b5092915050565b61113033611fad565b61117c5760405162461bcd60e51b815260206004820152601560248201527f4e6f7420616e206f776e6572206f722061646d696e0000000000000000000000604482015260640161066b565b6111858161230d565b6111d15760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420636f6e747261637441646472657373000000000000000000604482015260640161066b565b6001600160a01b038116600090815260086020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557ff8b6e5731f94977c9f6aca99256be7afb84b3fcf9efee0cddd9822f1cbfe2a448161123b3390565b604080516001600160a01b0393841681529290911660208301520160405180910390a150565b600954600090829061ffff168111156112bc5760405162461bcd60e51b815260206004820152600f60248201527f496e76616c696420746f6b656e49640000000000000000000000000000000000604482015260640161066b565b6000838152600a602090815260409182902082518084019093525460ff80821615801585526101009092041615159183019190915261130d576000848152600360205260409020545b925050611332565b6000848152600b60209081526040808320546003909252909120546113059190613a11565b50919050565b61134133610a4a565b80611350575061135033611fad565b61139c5760405162461bcd60e51b815260206004820152600c60248201527f556e617574686f72697a65640000000000000000000000000000000000000000604482015260640161066b565b6113a58161232c565b50565b6113b333838361233f565b5050565b6113c033611fad565b61140c5760405162461bcd60e51b815260206004820152601560248201527f4e6f7420616e206f776e6572206f722061646d696e0000000000000000000000604482015260640161066b565b6009805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b6000818152600360205260408120546107d5565b6004546001600160a01b031633146114b25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161066b565b6004546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505061104157600080fd5b60095462010000900460ff1661153b5760405162461bcd60e51b815260206004820152601060248201527f4d696e74696e6720696e61637469766500000000000000000000000000000000604482015260640161066b565b61154433610a4a565b6115905760405162461bcd60e51b815260206004820152601860248201527f53656e646572206973206e6f7420617574686f72697a65640000000000000000604482015260640161066b565b610acf83838360405180602001604052806000815250612452565b6115b433611fad565b6116005760405162461bcd60e51b815260206004820152601560248201527f4e6f7420616e206f776e6572206f722061646d696e0000000000000000000000604482015260640161066b565b6001600160a01b038116600090815260086020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557ff06321695c86a1fbc00e739847170ccd4e7a383985e5636c16f079a2280384b9813361123b565b6001600160a01b03851633148061168257506116828533610534565b6116f45760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f7665640000000000000000000000000000000000000000000000606482015260840161066b565b610b6f8585858585612658565b6004546001600160a01b0316331461175b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161066b565b6001600160a01b0381166117d75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161066b565b6113a5816122a3565b6117e982610dac565b6118355760405162461bcd60e51b815260206004820152601960248201527f517565727920666f72206e6f6e2d6578697374656e7420696400000000000000604482015260640161066b565b6001600160a01b03831633148061185157506118518333610534565b61189d5760405162461bcd60e51b815260206004820152601560248201527f4e6f74206f776e6572206f7220617070726f7665640000000000000000000000604482015260640161066b565b610acf838383612821565b6118b133610a4a565b806118c057506118c033611fad565b61190c5760405162461bcd60e51b815260206004820152600c60248201527f556e617574686f72697a65640000000000000000000000000000000000000000604482015260640161066b565b600954829061ffff168111156119645760405162461bcd60e51b815260206004820152600f60248201527f496e76616c696420746f6b656e49640000000000000000000000000000000000604482015260640161066b565b506000918252600a60205260409091208054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a26000000000000000000000000000000000000000000000000000000001480611a3c57507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b806107d557507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146107d5565b6060600280546109699061381f565b606081611adb57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611b055780611aef81613996565b9150611afe9050600a83613a58565b9150611adf565b60008167ffffffffffffffff811115611b2057611b206131dd565b6040519080825280601f01601f191660200182016040528015611b4a576020820181803683370190505b5090505b8415611bcd57611b5f6001836139fa565b9150611b6c600a86613a6c565b611b77906030613a11565b60f81b818381518110611b8c57611b8c6137f0565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611bc6600a86613a58565b9450611b4e565b949350505050565b6001600160a01b038416611c515760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161066b565b33611c7181600087611c62886129cd565b611c6b886129cd565b87612a18565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611ca1908490613a11565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610b6f81600087878787612aab565b8151835114611d785760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d61746368000000000000000000000000000000000000000000000000606482015260840161066b565b6001600160a01b038416611df45760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161066b565b33611e03818787878787612a18565b60005b8451811015611f3f576000858281518110611e2357611e236137f0565b602002602001015190506000858381518110611e4157611e416137f0565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611ee75760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e7366657200000000000000000000000000000000000000000000606482015260840161066b565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611f24908490613a11565b9250508190555050505080611f3890613996565b9050611e06565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f8f929190613a80565b60405180910390a4611fa5818787878787612cce565b505050505050565b6000611fc16004546001600160a01b031690565b6001600160a01b0316826001600160a01b031614806107d5575060075460ff1680156107d557506005546001600160a01b03838116911614806107d55750506006546001600160a01b0390811691161490565b6001600160a01b0383166120905760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161066b565b80518251146121075760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d61746368000000000000000000000000000000000000000000000000606482015260840161066b565b600033905061212a81856000868660405180602001604052806000815250612a18565b60005b835181101561224457600084828151811061214a5761214a6137f0565b602002602001015190506000848381518110612168576121686137f0565b602090810291909101810151600084815280835260408082206001600160a01b038c16835290935291909120549091508181101561220d5760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e636500000000000000000000000000000000000000000000000000000000606482015260840161066b565b6000928352602083815260408085206001600160a01b038b168652909152909220910390558061223c81613996565b91505061212d565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612295929190613a80565b60405180910390a450505050565b600480546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b03821661232557506000919050565b503b151590565b80516113b3906002906020840190612fc1565b816001600160a01b0316836001600160a01b031614156123c75760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c660000000000000000000000000000000000000000000000606482015260840161066b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166124ce5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161066b565b81518351146125455760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d61746368000000000000000000000000000000000000000000000000606482015260840161066b565b3361255581600087878787612a18565b60005b84518110156125f057838181518110612573576125736137f0565b6020026020010151600080878481518110612590576125906137f0565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546125d89190613a11565b909155508190506125e881613996565b915050612558565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612641929190613a80565b60405180910390a4610b6f81600087878787612cce565b6001600160a01b0384166126d45760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161066b565b336126e4818787611c62886129cd565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561277b5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e7366657200000000000000000000000000000000000000000000606482015260840161066b565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906127b8908490613a11565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612818828888888888612aab565b50505050505050565b6001600160a01b03831661289d5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161066b565b336128cc818560006128ae876129cd565b6128b7876129cd565b60405180602001604052806000815250612a18565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156129625760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e636500000000000000000000000000000000000000000000000000000000606482015260840161066b565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612a0757612a076137f0565b602090810291909101015292915050565b612a26868686868686612e47565b6001600160a01b038416611fa55760005b835181101561281857828181518110612a5257612a526137f0565b6020026020010151600b6000868481518110612a7057612a706137f0565b602002602001015181526020019081526020016000206000828254612a959190613a11565b90915550612aa4905081613996565b9050612a37565b6001600160a01b0384163b15611fa5576040517ff23a6e610000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063f23a6e6190612b089089908990889088908890600401613aae565b6020604051808303816000875af1925050508015612b61575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612b5e91810190613af1565b60015b612c1757612b6d613b0e565b806308c379a01415612ba75750612b82613b2a565b80612b8d5750612ba9565b8060405162461bcd60e51b815260040161066b919061315c565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e746572000000000000000000000000606482015260840161066b565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e6100000000000000000000000000000000000000000000000000000000146128185760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e73000000000000000000000000000000000000000000000000606482015260840161066b565b6001600160a01b0384163b15611fa5576040517fbc197c810000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063bc197c8190612d2b9089908990889088908890600401613bd2565b6020604051808303816000875af1925050508015612d84575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612d8191810190613af1565b60015b612d9057612b6d613b0e565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c8100000000000000000000000000000000000000000000000000000000146128185760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e73000000000000000000000000000000000000000000000000606482015260840161066b565b6001600160a01b038516612ece5760005b8351811015612ecc57828181518110612e7357612e736137f0565b602002602001015160036000868481518110612e9157612e916137f0565b602002602001015181526020019081526020016000206000828254612eb69190613a11565b90915550612ec5905081613996565b9050612e58565b505b6001600160a01b038416611fa55760005b835181101561281857828181518110612efa57612efa6137f0565b602002602001015160036000868481518110612f1857612f186137f0565b602002602001015181526020019081526020016000206000828254612f3d91906139fa565b90915550612f4c905081613996565b9050612edf565b8260028101928215612fb1579160200282015b82811115612fb15781547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03843516178255602090920191600190910190612f66565b50612fbd929150613035565b5090565b828054612fcd9061381f565b90600052602060002090601f016020900481019282612fef5760008555612fb1565b82601f1061300857805160ff1916838001178555612fb1565b82800160010185558215612fb1579182015b82811115612fb157825182559160200191906001019061301a565b5b80821115612fbd5760008155600101613036565b80356001600160a01b038116811461306157600080fd5b919050565b6000806040838503121561307957600080fd5b6130828361304a565b946020939093013593505050565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146113a557600080fd5b6000602082840312156130d057600080fd5b81356130db81613090565b9392505050565b60005b838110156130fd5781810151838201526020016130e5565b8381111561310c576000848401525b50505050565b6000815180845261312a8160208601602086016130e2565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006130db6020830184613112565b60006040828403121561318157600080fd5b8260408301111561133257600080fd5b6000602082840312156131a357600080fd5b5035919050565b6000806000606084860312156131bf57600080fd5b6131c88461304a565b95602085013595506040909401359392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff82111715613250576132506131dd565b6040525050565b600067ffffffffffffffff821115613271576132716131dd565b5060051b60200190565b600082601f83011261328c57600080fd5b8135602061329982613257565b6040516132a6828261320c565b83815260059390931b85018201928281019150868411156132c657600080fd5b8286015b848110156132e157803583529183019183016132ca565b509695505050505050565b600082601f8301126132fd57600080fd5b813567ffffffffffffffff811115613317576133176131dd565b60405161334c60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f850116018261320c565b81815284602083860101111561336157600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a0868803121561339657600080fd5b61339f8661304a565b94506133ad6020870161304a565b9350604086013567ffffffffffffffff808211156133ca57600080fd5b6133d689838a0161327b565b945060608801359150808211156133ec57600080fd5b6133f889838a0161327b565b9350608088013591508082111561340e57600080fd5b5061341b888289016132ec565b9150509295509295909350565b600080828403606081121561343c57600080fd5b604081121561344a57600080fd5b50829150604083013567ffffffffffffffff81111561346857600080fd5b613474858286016132ec565b9150509250929050565b6000806040838503121561349157600080fd5b823567ffffffffffffffff808211156134a957600080fd5b818501915085601f8301126134bd57600080fd5b813560206134ca82613257565b6040516134d7828261320c565b83815260059390931b85018201928281019150898411156134f757600080fd5b948201945b8386101561351c5761350d8661304a565b825294820194908201906134fc565b9650508601359250508082111561353257600080fd5b506134748582860161327b565b600081518084526020808501945080840160005b8381101561356f57815187529582019590820190600101613553565b509495945050505050565b6020815260006130db602083018461353f565b600080604083850312156135a057600080fd5b82359150602083013567ffffffffffffffff81111561346857600080fd5b6000806000606084860312156135d357600080fd5b6135dc8461304a565b9250602084013567ffffffffffffffff808211156135f957600080fd5b6136058783880161327b565b9350604086013591508082111561361b57600080fd5b506136288682870161327b565b9150509250925092565b60006020828403121561364457600080fd5b6130db8261304a565b602080825282518282018190526000919060409081850190868401855b8281101561368f5781518051855286015186850152928401929085019060010161366a565b5091979650505050505050565b6000602082840312156136ae57600080fd5b813567ffffffffffffffff8111156136c557600080fd5b611bcd848285016132ec565b80151581146113a557600080fd5b600080604083850312156136f257600080fd5b6136fb8361304a565b9150602083013561370b816136d1565b809150509250929050565b60006020828403121561372857600080fd5b81356130db816136d1565b6000806040838503121561374657600080fd5b61374f8361304a565b915061375d6020840161304a565b90509250929050565b600080600080600060a0868803121561377e57600080fd5b6137878661304a565b94506137956020870161304a565b93506040860135925060608601359150608086013567ffffffffffffffff8111156137bf57600080fd5b61341b888289016132ec565b600080604083850312156137de57600080fd5b82359150602083013561370b816136d1565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600181811c9082168061383357607f821691505b60208210811415611332577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000835161387f8184602088016130e2565b8351908301906138938183602088016130e2565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061ffff8083168181141561390b5761390b6138c4565b6001019392505050565b8135613920816136d1565b81547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811691151560ff169182178355602084013561395e816136d1565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00009190911690911790151560081b61ff001617905550565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139c8576139c86138c4565b5060010190565b6040815260006139e26040830185613112565b90506001600160a01b03831660208301529392505050565b600082821015613a0c57613a0c6138c4565b500390565b60008219821115613a2457613a246138c4565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613a6757613a67613a29565b500490565b600082613a7b57613a7b613a29565b500690565b604081526000613a93604083018561353f565b8281036020840152613aa5818561353f565b95945050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a06080830152613ae660a0830184613112565b979650505050505050565b600060208284031215613b0357600080fd5b81516130db81613090565b600060033d1115613b275760046000803e5060005160e01c5b90565b600060443d1015613b385790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff8160248401118184111715613b8657505050505090565b8285019150815181811115613b9e5750505050505090565b843d8701016020828501011115613bb85750505050505090565b613bc76020828601018761320c565b509095945050505050565b60006001600160a01b03808816835280871660208401525060a06040830152613bfe60a083018661353f565b8281036060840152613c10818661353f565b90508281036080840152613c248185613112565b9897505050505050505056fea2646970667358221220422a7cac6b1ded5f9bcafd89dada7fcc54558f36c32c3d3a1717f7e9383d549264736f6c634300080c0033

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

000000000000000000000000e262cc4e40c15223c1967aee3b6345e4ddc9f4d0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : awooStoreAddress (address): 0xE262cc4E40C15223C1967AeE3b6345E4Ddc9F4D0
Arg [1] : baseUri (string):

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000e262cc4e40c15223c1967aee3b6345e4ddc9f4d0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44977:10406:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45204:28;;;;;;;;;;;;188:6:1;176:19;;;158:38;;146:2;131:18;45204:28:0;;;;;;;;27463:231;;;;;;:::i;:::-;;:::i;:::-;;;813:25:1;;;801:2;786:18;27463:231:0;667:177:1;46232:445:0;;;;;;:::i;:::-;;:::i;:::-;;;1446:14:1;;1439:22;1421:41;;1409:2;1394:18;46232:445:0;1281:187:1;45107:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;3764:212::-;;;;;;:::i;:::-;;:::i;:::-;;49410:261;;;;;;:::i;:::-;;:::i;46943:141::-;;;;;;:::i;:::-;;:::i;45239:20::-;;;;;;;;;;;;29402:442;;;;;;:::i;:::-;;:::i;52299:339::-;;;;;;:::i;:::-;;:::i;27860:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;51817:161::-;;;;;;:::i;:::-;;:::i;53229:209::-;;;;;;:::i;:::-;;:::i;45643:50::-;;;;;;:::i;:::-;;;;;;;;;;;;;;48769:394;;;;;;:::i;:::-;;:::i;2618:103::-;;;:::i;49914:391::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1967:87::-;2040:6;;1967:87;;-1:-1:-1;;;;;2040:6:0;;;10629:74:1;;10617:2;10602:18;1967:87:0;10483:226:1;45156:39:0;;;;;;;;;;;;;;;;;;;;;5030:287;;;;;;:::i;:::-;;:::i;50791:369::-;;;;;;:::i;:::-;;:::i;52905:100::-;;;;;;:::i;:::-;;:::i;28457:155::-;;;;;;:::i;:::-;;:::i;54026:94::-;;;;;;:::i;:::-;;:::i;51394:174::-;;;;;;:::i;:::-;;:::i;54128:112::-;;;:::i;4612:51::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;47390:185;;;;;;:::i;:::-;;:::i;5501:218::-;;;;;;:::i;:::-;;:::i;28684:168::-;;;;;;:::i;:::-;-1:-1:-1;;;;;28807:27:0;;;28783:4;28807:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;28684:168;28924:401;;;;;;:::i;:::-;;:::i;2876:201::-;;;;;;:::i;:::-;;:::i;48018:265::-;;;;;;:::i;:::-;;:::i;45367:51::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;12792:14:1;;12785:22;12767:41;;12851:14;;12844:22;12839:2;12824:18;;12817:50;12740:18;45367:51:0;12605:268:1;53701:141:0;;;;;;:::i;:::-;;:::i;27463:231::-;27549:7;-1:-1:-1;;;;;27577:21:0;;27569:77;;;;-1:-1:-1;;;27569:77:0;;13394:2:1;27569:77:0;;;13376:21:1;13433:2;13413:18;;;13406:30;13472:34;13452:18;;;13445:62;13543:13;13523:18;;;13516:41;13574:19;;27569:77:0;;;;;;;;;-1:-1:-1;27664:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;27664:22:0;;;;;;;;;;;;27463:231::o;46232:445::-;46351:4;46375:36;46399:11;46375:23;:36::i;:::-;:109;;;-1:-1:-1;46428:56:0;;;46443:41;46428:56;46375:109;:167;;;-1:-1:-1;46501:41:0;;;46516:26;46501:41;46375:167;:233;;;-1:-1:-1;46559:49:0;;;46574:34;46559:49;46375:233;:294;;;-1:-1:-1;46625:44:0;;;46640:29;46625:44;46375:294;46368:301;46232:445;-1:-1:-1;;46232:445:0:o;3764:212::-;3858:1;3837:9;;;;:6;:9;:::i;:::-;-1:-1:-1;;;;;3837:23:0;;;:50;;;;-1:-1:-1;3885:1:0;3864:9;;;;;;;;:::i;:::-;-1:-1:-1;;;;;3864:23:0;;;3837:50;3829:84;;;;-1:-1:-1;;;3829:84:0;;13995:2:1;3829:84:0;;;13977:21:1;14034:2;14014:18;;;14007:30;14073:23;14053:18;;;14046:51;14114:18;;3829:84:0;13793:345:1;3829:84:0;3924:16;:7;3934:6;3924:16;;:::i;:::-;-1:-1:-1;;3951:10:0;:17;;;;3964:4;3951:17;;;3764:212::o;49410:261::-;49465:13;49499:10;49506:2;49499:6;:10::i;:::-;49491:48;;;;-1:-1:-1;;;49491:48:0;;14345:2:1;49491:48:0;;;14327:21:1;14384:2;14364:18;;;14357:30;14423:27;14403:18;;;14396:55;14468:18;;49491:48:0;14143:349:1;49491:48:0;49588:1;49563:14;;;:10;:14;;;;;49557:28;;;;;:::i;:::-;;;:32;:106;;49623:15;49635:2;49623:11;:15::i;:::-;49640:13;:2;:11;:13::i;:::-;49609:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49557:106;;;49592:14;;;;:10;:14;;;;;49557:106;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49550:113;49410:261;-1:-1:-1;;49410:261:0:o;46943:141::-;54848:8;;;;;;;54840:37;;;;-1:-1:-1;;;54840:37:0;;15772:2:1;54840:37:0;;;15754:21:1;15811:2;15791:18;;;15784:30;15850:18;15830;;;15823:46;15886:18;;54840:37:0;15570:340:1;54840:37:0;6615:35:::1;765:10:::0;6637:12:::1;-1:-1:-1::0;;;;;6345:25:0;6322:4;6345:25;;;:19;:25;;;;;;;;;6247:131;6615:35:::1;6607:72;;;::::0;-1:-1:-1;;;6607:72:0;;16117:2:1;6607:72:0::1;::::0;::::1;16099:21:1::0;16156:2;16136:18;;;16129:30;16195:26;16175:18;;;16168:54;16239:18;;6607:72:0::1;15915:348:1::0;6607:72:0::1;47054:22:::2;47060:2;47064;47068:3;47054:22;;;;;;;;;;;::::0;:5:::2;:22::i;:::-;46943:141:::0;;;:::o;29402:442::-;-1:-1:-1;;;;;29635:20:0;;765:10;29635:20;;:60;;-1:-1:-1;29659:36:0;29676:4;765:10;28684:168;:::i;29659:36::-;29613:160;;;;-1:-1:-1;;;29613:160:0;;16470:2:1;29613:160:0;;;16452:21:1;16509:2;16489:18;;;16482:30;16548:34;16528:18;;;16521:62;16619:20;16599:18;;;16592:48;16657:19;;29613:160:0;16268:414:1;29613:160:0;29784:52;29807:4;29813:2;29817:3;29822:7;29831:4;29784:22;:52::i;:::-;29402:442;;;;;:::o;52299:339::-;52405:7;55273:35;765:10;55295:12;685:98;55273:35;:68;;;-1:-1:-1;55312:29:0;765:10;55312:15;:29::i;:::-;55265:93;;;;-1:-1:-1;;;55265:93:0;;16889:2:1;55265:93:0;;;16871:21:1;16928:2;16908:18;;;16901:30;16967:14;16947:18;;;16940:42;16999:18;;55265:93:0;16687:336:1;55265:93:0;52424:14:::1;:16:::0;;::::1;;::::0;:14:::1;:16;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;52479:1;52460:8;52454:22;:26;52451:95;;;52508:14;::::0;::::1;;52497:26;::::0;;;:10:::1;:26;::::0;;;;;;;:37;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;52451:95;52569:14;::::0;::::1;;52556:28;::::0;;;:12:::1;:28;::::0;;;;52587:11;;52556:42:::1;52587:11:::0;52556:28;:42:::1;:::i;:::-;-1:-1:-1::0;;52616:14:0::1;::::0;::::1;;::::0;52299:339;-1:-1:-1;;;52299:339:0:o;27860:524::-;28016:16;28077:3;:10;28058:8;:15;:29;28050:83;;;;-1:-1:-1;;;28050:83:0;;18282:2:1;28050:83:0;;;18264:21:1;18321:2;18301:18;;;18294:30;18360:34;18340:18;;;18333:62;18431:11;18411:18;;;18404:39;18460:19;;28050:83:0;18080:405:1;28050:83:0;28146:30;28193:8;:15;28179:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28179:30:0;;28146:63;;28227:9;28222:122;28246:8;:15;28242:1;:19;28222:122;;;28302:30;28312:8;28321:1;28312:11;;;;;;;;:::i;:::-;;;;;;;28325:3;28329:1;28325:6;;;;;;;;:::i;:::-;;;;;;;28302:9;:30::i;:::-;28283:13;28297:1;28283:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;28263:3;;;:::i;:::-;;;28222:122;;;-1:-1:-1;28363:13:0;27860:524;-1:-1:-1;;;27860:524:0:o;51817:161::-;51922:4;41786:16;;;:12;:16;;;;;;-1:-1:-1;;51946:24:0;41908:122;53229:209;55273:35;765:10;55295:12;685:98;55273:35;:68;;;-1:-1:-1;55312:29:0;765:10;55312:15;:29::i;:::-;55265:93;;;;-1:-1:-1;;;55265:93:0;;16889:2:1;55265:93:0;;;16871:21:1;16928:2;16908:18;;;16901:30;16967:14;16947:18;;;16940:42;16999:18;;55265:93:0;16687:336:1;55265:93:0;54966:14:::1;::::0;53323:2;;54966:14:::1;;54960:20:::0;::::1;;54952:48;;;::::0;-1:-1:-1;;;54952:48:0;;18892:2:1;54952:48:0::1;::::0;::::1;18874:21:1::0;18931:2;18911:18;;;18904:30;18970:17;18950:18;;;18943:45;19005:18;;54952:48:0::1;18690:339:1::0;54952:48:0::1;53346:14:::2;::::0;;;:10:::2;:14;::::0;;;;;;;:25;;::::2;::::0;;::::2;::::0;::::2;:::i;:::-;-1:-1:-1::0;53403:2:0;53387:43:::2;53407:8:::0;765:10;53387:43:::2;;;;;;;:::i;:::-;;;;;;;;55369:1:::1;53229:209:::0;;:::o;48769:394::-;-1:-1:-1;;;;;48881:20:0;;765:10;48881:20;;:60;;-1:-1:-1;48905:36:0;48922:4;765:10;28684:168;:::i;48905:36::-;48873:94;;;;-1:-1:-1;;;48873:94:0;;19581:2:1;48873:94:0;;;19563:21:1;19620:2;19600:18;;;19593:30;19659:23;19639:18;;;19632:51;19700:18;;48873:94:0;19379:345:1;48873:94:0;48992:9;48988:114;49007:3;:10;49003:1;:14;48988:114;;;49046:14;49053:3;49057:1;49053:6;;;;;;;;:::i;:::-;;;;;;;49046;:14::i;:::-;49038:52;;;;-1:-1:-1;;;49038:52:0;;14345:2:1;49038:52:0;;;14327:21:1;14384:2;14364:18;;;14357:30;14423:27;14403:18;;;14396:55;14468:18;;49038:52:0;14143:349:1;49038:52:0;49019:3;;;;:::i;:::-;;;;48988:114;;;;49122:33;49133:4;49139:3;49144:10;49122;:33::i;2618:103::-;2040:6;;-1:-1:-1;;;;;2040:6:0;765:10;2187:23;2179:68;;;;-1:-1:-1;;;2179:68:0;;19931:2:1;2179:68:0;;;19913:21:1;;;19950:18;;;19943:30;20009:34;19989:18;;;19982:62;20061:18;;2179:68:0;19729:356:1;2179:68:0;2683:30:::1;2710:1;2683:18;:30::i;:::-;2618:103::o:0;49914:391::-;50063:14;;49975:19;;50007:36;;50063:14;;50046:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;50046:32:0;;;;;;;;;;;;;;;-1:-1:-1;50007:71:0;-1:-1:-1;50115:1:0;50099:165;50123:14;;;;50118:19;;50099:165;;50158:13;50174:19;50184:5;50191:1;50174:9;:19::i;:::-;50158:35;;50232:20;;;;;;;;50243:1;50232:20;;;;50246:5;50232:20;;;50208:16;50227:1;50225;:3;;;;:::i;:::-;50208:21;;;;;;;;:::i;:::-;;;;;;:44;;;;50143:121;50139:3;;;;;:::i;:::-;;;;50099:165;;;-1:-1:-1;50281:16:0;49914:391;-1:-1:-1;;49914:391:0:o;5030:287::-;4272:27;4288:10;4272:15;:27::i;:::-;4264:61;;;;-1:-1:-1;;;4264:61:0;;20422:2:1;4264:61:0;;;20404:21:1;20461:2;20441:18;;;20434:30;20500:23;20480:18;;;20473:51;20541:18;;4264:61:0;20220:345:1;4264:61:0;5129:28:::1;5141:15;5129:11;:28::i;:::-;5121:64;;;::::0;-1:-1:-1;;;5121:64:0;;20772:2:1;5121:64:0::1;::::0;::::1;20754:21:1::0;20811:2;20791:18;;;20784:30;20850:25;20830:18;;;20823:53;20893:18;;5121:64:0::1;20570:347:1::0;5121:64:0::1;-1:-1:-1::0;;;;;5196:36:0;::::1;;::::0;;;:19:::1;:36;::::0;;;;:43;;;::::1;5235:4;5196:43;::::0;;5255:54:::1;5216:15:::0;5296:12:::1;765:10:::0;;685:98;5296:12:::1;5255:54;::::0;;-1:-1:-1;;;;;21175:15:1;;;21157:34;;21227:15;;;;21222:2;21207:18;;21200:43;21069:18;5255:54:0::1;;;;;;;5030:287:::0;:::o;50791:369::-;54966:14;;50865:7;;50839:2;;54966:14;;54960:20;;;54952:48;;;;-1:-1:-1;;;54952:48:0;;18892:2:1;54952:48:0;;;18874:21:1;18931:2;18911:18;;;18904:30;18970:17;18950:18;;;18943:45;19005:18;;54952:48:0;18690:339:1;54952:48:0;50885:30:::1;50918:16:::0;;;:12:::1;:16;::::0;;;;;;;;50885:49;;;;::::1;::::0;;;;::::1;::::0;;::::1;;::::0;::::1;::::0;;::::1;::::0;;::::1;;;;::::0;;::::1;::::0;;;;50955:190:::1;;41759:7:::0;41786:16;;;:12;:16;;;;;;51002:29:::1;50995:36;;;;;50955:190;51113:19;::::0;;;:15:::1;:19;::::0;;;;;;;;41786:12;:16;;;;;;;51081:51:::1;;;;:::i;55011:1::-;50791:369:::0;;;;:::o;52905:100::-;55273:35;765:10;55295:12;685:98;55273:35;:68;;;-1:-1:-1;55312:29:0;765:10;55312:15;:29::i;:::-;55265:93;;;;-1:-1:-1;;;55265:93:0;;16889:2:1;55265:93:0;;;16871:21:1;16928:2;16908:18;;;16901:30;16967:14;16947:18;;;16940:42;16999:18;;55265:93:0;16687:336:1;55265:93:0;52981:16:::1;52989:7;52981;:16::i;:::-;52905:100:::0;:::o;28457:155::-;28552:52;765:10;28585:8;28595;28552:18;:52::i;:::-;28457:155;;:::o;54026:94::-;4272:27;4288:10;4272:15;:27::i;:::-;4264:61;;;;-1:-1:-1;;;4264:61:0;;20422:2:1;4264:61:0;;;20404:21:1;20461:2;20441:18;;;20434:30;20500:23;20480:18;;;20473:51;20541:18;;4264:61:0;20220:345:1;4264:61:0;54095:8:::1;:17:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;54026:94::o;51394:174::-;51504:7;41786:16;;;:12;:16;;;;;;51531:29;41697:113;54128:112;2040:6;;-1:-1:-1;;;;;2040:6:0;765:10;2187:23;2179:68;;;;-1:-1:-1;;;2179:68:0;;19931:2:1;2179:68:0;;;19913:21:1;;;19950:18;;;19943:30;20009:34;19989:18;;;19982:62;20061:18;;2179:68:0;19729:356:1;2179:68:0;2040:6;;54187:44:::1;::::0;-1:-1:-1;;;;;2040:6:0;;;;54209:21:::1;54187:44:::0;::::1;;;::::0;::::1;::::0;;;54209:21;2040:6;54187:44;::::1;;;;;;54179:53;;;::::0;::::1;47390:185:::0;54848:8;;;;;;;54840:37;;;;-1:-1:-1;;;54840:37:0;;15772:2:1;54840:37:0;;;15754:21:1;15811:2;15791:18;;;15784:30;15850:18;15830;;;15823:46;15886:18;;54840:37:0;15570:340:1;54840:37:0;6615:35:::1;765:10:::0;6637:12:::1;685:98:::0;6615:35:::1;6607:72;;;::::0;-1:-1:-1;;;6607:72:0;;16117:2:1;6607:72:0::1;::::0;::::1;16099:21:1::0;16156:2;16136:18;;;16129:30;16195:26;16175:18;;;16168:54;16239:18;;6607:72:0::1;15915:348:1::0;6607:72:0::1;47532:35:::2;47543:2;47547:3;47552:10;47532:35;;;;;;;;;;;::::0;:10:::2;:35::i;5501:218::-:0;4272:27;4288:10;4272:15;:27::i;:::-;4264:61;;;;-1:-1:-1;;;4264:61:0;;20422:2:1;4264:61:0;;;20404:21:1;20461:2;20441:18;;;20434:30;20500:23;20480:18;;;20473:51;20541:18;;4264:61:0;20220:345:1;4264:61:0;-1:-1:-1;;;;;5595:36:0;::::1;5634:5;5595:36:::0;;;:19:::1;:36;::::0;;;;:44;;;::::1;::::0;;5655:56:::1;5595:36:::0;765:10;5698:12:::1;685:98:::0;28924:401;-1:-1:-1;;;;;29132:20:0;;765:10;29132:20;;:60;;-1:-1:-1;29156:36:0;29173:4;765:10;28684:168;:::i;29156:36::-;29110:151;;;;-1:-1:-1;;;29110:151:0;;21589:2:1;29110:151:0;;;21571:21:1;21628:2;21608:18;;;21601:30;21667:34;21647:18;;;21640:62;21738:11;21718:18;;;21711:39;21767:19;;29110:151:0;21387:405:1;29110:151:0;29272:45;29290:4;29296:2;29300;29304:6;29312:4;29272:17;:45::i;2876:201::-;2040:6;;-1:-1:-1;;;;;2040:6:0;765:10;2187:23;2179:68;;;;-1:-1:-1;;;2179:68:0;;19931:2:1;2179:68:0;;;19913:21:1;;;19950:18;;;19943:30;20009:34;19989:18;;;19982:62;20061:18;;2179:68:0;19729:356:1;2179:68:0;-1:-1:-1;;;;;2965:22:0;::::1;2957:73;;;::::0;-1:-1:-1;;;2957:73:0;;21999:2:1;2957:73:0::1;::::0;::::1;21981:21:1::0;22038:2;22018:18;;;22011:30;22077:34;22057:18;;;22050:62;22148:8;22128:18;;;22121:36;22174:19;;2957:73:0::1;21797:402:1::0;2957:73:0::1;3041:28;3060:8;3041:18;:28::i;48018:265::-:0;48099:10;48106:2;48099:6;:10::i;:::-;48091:48;;;;-1:-1:-1;;;48091:48:0;;14345:2:1;48091:48:0;;;14327:21:1;14384:2;14364:18;;;14357:30;14423:27;14403:18;;;14396:55;14468:18;;48091:48:0;14143:349:1;48091:48:0;-1:-1:-1;;;;;48158:20:0;;765:10;48158:20;;:60;;-1:-1:-1;48182:36:0;48199:4;765:10;28684:168;:::i;48182:36::-;48150:94;;;;-1:-1:-1;;;48150:94:0;;19581:2:1;48150:94:0;;;19563:21:1;19620:2;19600:18;;;19593:30;19659:23;19639:18;;;19632:51;19700:18;;48150:94:0;19379:345:1;48150:94:0;48255:20;48261:4;48267:2;48271:3;48255:5;:20::i;53701:141::-;55273:35;765:10;55295:12;685:98;55273:35;:68;;;-1:-1:-1;55312:29:0;765:10;55312:15;:29::i;:::-;55265:93;;;;-1:-1:-1;;;55265:93:0;;16889:2:1;55265:93:0;;;16871:21:1;16928:2;16908:18;;;16901:30;16967:14;16947:18;;;16940:42;16999:18;;55265:93:0;16687:336:1;55265:93:0;54966:14:::1;::::0;53787:2;;54966:14:::1;;54960:20:::0;::::1;;54952:48;;;::::0;-1:-1:-1;;;54952:48:0;;18892:2:1;54952:48:0::1;::::0;::::1;18874:21:1::0;18931:2;18911:18;;;18904:30;18970:17;18950:18;;;18943:45;19005:18;;54952:48:0::1;18690:339:1::0;54952:48:0::1;-1:-1:-1::0;53802:16:0::2;::::0;;;:12:::2;:16;::::0;;;;;:32;;;::::2;;;;::::0;;;::::2;::::0;;;::::2;::::0;;53701:141::o;26486:310::-;26588:4;26625:41;;;26640:26;26625:41;;:110;;-1:-1:-1;26683:52:0;;;26698:37;26683:52;26625:110;:163;;;-1:-1:-1;16781:25:0;16766:40;;;;26752:36;16657:157;27207:105;27267:13;27300:4;27293:11;;;;;:::i;43138:723::-;43194:13;43415:10;43411:53;;-1:-1:-1;;43442:10:0;;;;;;;;;;;;;;;;;;43138:723::o;43411:53::-;43489:5;43474:12;43530:78;43537:9;;43530:78;;43563:8;;;;:::i;:::-;;-1:-1:-1;43586:10:0;;-1:-1:-1;43594:2:0;43586:10;;:::i;:::-;;;43530:78;;;43618:19;43650:6;43640:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43640:17:0;;43618:39;;43668:154;43675:10;;43668:154;;43702:11;43712:1;43702:11;;:::i;:::-;;-1:-1:-1;43771:10:0;43779:2;43771:5;:10;:::i;:::-;43758:24;;:2;:24;:::i;:::-;43745:39;;43728:6;43735;43728:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;43799:11:0;43808:2;43799:11;;:::i;:::-;;;43668:154;;;43846:6;43138:723;-1:-1:-1;;;;43138:723:0:o;33878:569::-;-1:-1:-1;;;;;34031:16:0;;34023:62;;;;-1:-1:-1;;;34023:62:0;;22837:2:1;34023:62:0;;;22819:21:1;22876:2;22856:18;;;22849:30;22915:34;22895:18;;;22888:62;22986:3;22966:18;;;22959:31;23007:19;;34023:62:0;22635:397:1;34023:62:0;765:10;34142:102;765:10;34098:16;34185:2;34189:21;34207:2;34189:17;:21::i;:::-;34212:25;34230:6;34212:17;:25::i;:::-;34239:4;34142:20;:102::i;:::-;34257:9;:13;;;;;;;;;;;-1:-1:-1;;;;;34257:17:0;;;;;;;;;:27;;34278:6;;34257:9;:27;;34278:6;;34257:27;:::i;:::-;;;;-1:-1:-1;;34300:52:0;;;23211:25:1;;;23267:2;23252:18;;23245:34;;;-1:-1:-1;;;;;34300:52:0;;;;34333:1;;34300:52;;;;;;23184:18:1;34300:52:0;;;;;;;34365:74;34396:8;34414:1;34418:2;34422;34426:6;34434:4;34365:30;:74::i;31486:1074::-;31713:7;:14;31699:3;:10;:28;31691:81;;;;-1:-1:-1;;;31691:81:0;;23492:2:1;31691:81:0;;;23474:21:1;23531:2;23511:18;;;23504:30;23570:34;23550:18;;;23543:62;23641:10;23621:18;;;23614:38;23669:19;;31691:81:0;23290:404:1;31691:81:0;-1:-1:-1;;;;;31791:16:0;;31783:66;;;;-1:-1:-1;;;31783:66:0;;23901:2:1;31783:66:0;;;23883:21:1;23940:2;23920:18;;;23913:30;23979:34;23959:18;;;23952:62;24050:7;24030:18;;;24023:35;24075:19;;31783:66:0;23699:401:1;31783:66:0;765:10;31906:60;765:10;31937:4;31943:2;31947:3;31952:7;31961:4;31906:20;:60::i;:::-;31984:9;31979:421;32003:3;:10;31999:1;:14;31979:421;;;32035:10;32048:3;32052:1;32048:6;;;;;;;;:::i;:::-;;;;;;;32035:19;;32069:14;32086:7;32094:1;32086:10;;;;;;;;:::i;:::-;;;;;;;;;;;;32113:19;32135:13;;;;;;;;;;-1:-1:-1;;;;;32135:19:0;;;;;;;;;;;;32086:10;;-1:-1:-1;32177:21:0;;;;32169:76;;;;-1:-1:-1;;;32169:76:0;;24307:2:1;32169:76:0;;;24289:21:1;24346:2;24326:18;;;24319:30;24385:34;24365:18;;;24358:62;24456:12;24436:18;;;24429:40;24486:19;;32169:76:0;24105:406:1;32169:76:0;32289:9;:13;;;;;;;;;;;-1:-1:-1;;;;;32289:19:0;;;;;;;;;;32311:20;;;32289:42;;32361:17;;;;;;;:27;;32311:20;;32289:9;32361:27;;32311:20;;32361:27;:::i;:::-;;;;;;;;32020:380;;;32015:3;;;;:::i;:::-;;;31979:421;;;;32447:2;-1:-1:-1;;;;;32417:47:0;32441:4;-1:-1:-1;;;;;32417:47:0;32431:8;-1:-1:-1;;;;;32417:47:0;;32451:3;32456:7;32417:47;;;;;;;:::i;:::-;;;;;;;;32477:75;32513:8;32523:4;32529:2;32533:3;32538:7;32547:4;32477:35;:75::i;:::-;31680:880;31486:1074;;;;;:::o;3984:233::-;4053:4;4084:7;2040:6;;-1:-1:-1;;;;;2040:6:0;;1967:87;4084:7;-1:-1:-1;;;;;4076:15:0;:4;-1:-1:-1;;;;;4076:15:0;;:133;;;-1:-1:-1;4110:10:0;;;;:88;;;;-1:-1:-1;4151:7:0;:10;-1:-1:-1;;;;;4143:18:0;;;4151:10;;4143:18;;:40;;-1:-1:-1;;4173:10:0;;-1:-1:-1;;;;;4173:10:0;;;4165:18;;;;3984:233::o;36639:891::-;-1:-1:-1;;;;;36791:18:0;;36783:66;;;;-1:-1:-1;;;36783:66:0;;25188:2:1;36783:66:0;;;25170:21:1;25227:2;25207:18;;;25200:30;25266:34;25246:18;;;25239:62;25337:5;25317:18;;;25310:33;25360:19;;36783:66:0;24986:399:1;36783:66:0;36882:7;:14;36868:3;:10;:28;36860:81;;;;-1:-1:-1;;;36860:81:0;;23492:2:1;36860:81:0;;;23474:21:1;23531:2;23511:18;;;23504:30;23570:34;23550:18;;;23543:62;23641:10;23621:18;;;23614:38;23669:19;;36860:81:0;23290:404:1;36860:81:0;36954:16;765:10;36954:31;;36998:66;37019:8;37029:4;37043:1;37047:3;37052:7;36998:66;;;;;;;;;;;;:20;:66::i;:::-;37082:9;37077:373;37101:3;:10;37097:1;:14;37077:373;;;37133:10;37146:3;37150:1;37146:6;;;;;;;;:::i;:::-;;;;;;;37133:19;;37167:14;37184:7;37192:1;37184:10;;;;;;;;:::i;:::-;;;;;;;;;;;;37211:19;37233:13;;;;;;;;;;-1:-1:-1;;;;;37233:19:0;;;;;;;;;;;;37184:10;;-1:-1:-1;37275:21:0;;;;37267:70;;;;-1:-1:-1;;;37267:70:0;;25592:2:1;37267:70:0;;;25574:21:1;25631:2;25611:18;;;25604:30;25670:34;25650:18;;;25643:62;25741:6;25721:18;;;25714:34;25765:19;;37267:70:0;25390:400:1;37267:70:0;37381:9;:13;;;;;;;;;;;-1:-1:-1;;;;;37381:19:0;;;;;;;;;;37403:20;;37381:42;;37113:3;;;;:::i;:::-;;;;37077:373;;;;37505:1;-1:-1:-1;;;;;37467:55:0;37491:4;-1:-1:-1;;;;;37467:55:0;37481:8;-1:-1:-1;;;;;37467:55:0;;37509:3;37514:7;37467:55;;;;;;;:::i;:::-;;;;;;;;36772:758;36639:891;;;:::o;3237:191::-;3330:6;;;-1:-1:-1;;;;;3347:17:0;;;;;;;;;;;3380:40;;3330:6;;;3347:17;3330:6;;3380:40;;3311:16;;3380:40;3300:128;3237:191;:::o;5796:443::-;5865:4;-1:-1:-1;;;;;5885:21:0;;5882:38;;-1:-1:-1;5915:5:0;;5796:443;-1:-1:-1;5796:443:0:o;5882:38::-;-1:-1:-1;6175:20:0;6223:8;;;5796:443::o;33404:88::-;33471:13;;;;:4;;:13;;;;;:::i;37672:331::-;37827:8;-1:-1:-1;;;;;37818:17:0;:5;-1:-1:-1;;;;;37818:17:0;;;37810:71;;;;-1:-1:-1;;;37810:71:0;;25997:2:1;37810:71:0;;;25979:21:1;26036:2;26016:18;;;26009:30;26075:34;26055:18;;;26048:62;26146:11;26126:18;;;26119:39;26175:19;;37810:71:0;25795:405:1;37810:71:0;-1:-1:-1;;;;;37892:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;37954:41;;1421::1;;;37954::0;;1394:18:1;37954:41:0;;;;;;;37672:331;;;:::o;34803:735::-;-1:-1:-1;;;;;34981:16:0;;34973:62;;;;-1:-1:-1;;;34973:62:0;;22837:2:1;34973:62:0;;;22819:21:1;22876:2;22856:18;;;22849:30;22915:34;22895:18;;;22888:62;22986:3;22966:18;;;22959:31;23007:19;;34973:62:0;22635:397:1;34973:62:0;35068:7;:14;35054:3;:10;:28;35046:81;;;;-1:-1:-1;;;35046:81:0;;23492:2:1;35046:81:0;;;23474:21:1;23531:2;23511:18;;;23504:30;23570:34;23550:18;;;23543:62;23641:10;23621:18;;;23614:38;23669:19;;35046:81:0;23290:404:1;35046:81:0;765:10;35184:66;765:10;35140:16;35227:2;35231:3;35236:7;35245:4;35184:20;:66::i;:::-;35268:9;35263:103;35287:3;:10;35283:1;:14;35263:103;;;35344:7;35352:1;35344:10;;;;;;;;:::i;:::-;;;;;;;35319:9;:17;35329:3;35333:1;35329:6;;;;;;;;:::i;:::-;;;;;;;35319:17;;;;;;;;;;;:21;35337:2;-1:-1:-1;;;;;35319:21:0;-1:-1:-1;;;;;35319:21:0;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;35299:3:0;;-1:-1:-1;35299:3:0;;;:::i;:::-;;;;35263:103;;;;35419:2;-1:-1:-1;;;;;35383:53:0;35415:1;-1:-1:-1;;;;;35383:53:0;35397:8;-1:-1:-1;;;;;35383:53:0;;35423:3;35428:7;35383:53;;;;;;;:::i;:::-;;;;;;;;35449:81;35485:8;35503:1;35507:2;35511:3;35516:7;35525:4;35449:35;:81::i;30308:820::-;-1:-1:-1;;;;;30496:16:0;;30488:66;;;;-1:-1:-1;;;30488:66:0;;23901:2:1;30488:66:0;;;23883:21:1;23940:2;23920:18;;;23913:30;23979:34;23959:18;;;23952:62;24050:7;24030:18;;;24023:35;24075:19;;30488:66:0;23699:401:1;30488:66:0;765:10;30611:96;765:10;30642:4;30648:2;30652:21;30670:2;30652:17;:21::i;30611:96::-;30720:19;30742:13;;;;;;;;;;;-1:-1:-1;;;;;30742:19:0;;;;;;;;;;30780:21;;;;30772:76;;;;-1:-1:-1;;;30772:76:0;;24307:2:1;30772:76:0;;;24289:21:1;24346:2;24326:18;;;24319:30;24385:34;24365:18;;;24358:62;24456:12;24436:18;;;24429:40;24486:19;;30772:76:0;24105:406:1;30772:76:0;30884:9;:13;;;;;;;;;;;-1:-1:-1;;;;;30884:19:0;;;;;;;;;;30906:20;;;30884:42;;30948:17;;;;;;;:27;;30906:20;;30884:9;30948:27;;30906:20;;30948:27;:::i;:::-;;;;-1:-1:-1;;30993:46:0;;;23211:25:1;;;23267:2;23252:18;;23245:34;;;-1:-1:-1;;;;;30993:46:0;;;;;;;;;;;;;;23184:18:1;30993:46:0;;;;;;;31052:68;31083:8;31093:4;31099:2;31103;31107:6;31115:4;31052:30;:68::i;:::-;30477:651;;30308:820;;;;;:::o;35788:648::-;-1:-1:-1;;;;;35915:18:0;;35907:66;;;;-1:-1:-1;;;35907:66:0;;25188:2:1;35907:66:0;;;25170:21:1;25227:2;25207:18;;;25200:30;25266:34;25246:18;;;25239:62;25337:5;25317:18;;;25310:33;25360:19;;35907:66:0;24986:399:1;35907:66:0;765:10;36030:102;765:10;36061:4;35986:16;36079:21;36097:2;36079:17;:21::i;:::-;36102:25;36120:6;36102:17;:25::i;:::-;36030:102;;;;;;;;;;;;:20;:102::i;:::-;36145:19;36167:13;;;;;;;;;;;-1:-1:-1;;;;;36167:19:0;;;;;;;;;;36205:21;;;;36197:70;;;;-1:-1:-1;;;36197:70:0;;25592:2:1;36197:70:0;;;25574:21:1;25631:2;25611:18;;;25604:30;25670:34;25650:18;;;25643:62;25741:6;25721:18;;;25714:34;25765:19;;36197:70:0;25390:400:1;36197:70:0;36303:9;:13;;;;;;;;;;;-1:-1:-1;;;;;36303:19:0;;;;;;;;;;;;36325:20;;;36303:42;;36374:54;;23211:25:1;;;23252:18;;;23245:34;;;36303:19:0;;36374:54;;;;;;23184:18:1;36374:54:0;;;;;;;35896:540;;35788:648;;;:::o;40761:198::-;40881:16;;;40895:1;40881:16;;;;;;;;;40827;;40856:22;;40881:16;;;;;;;;;;;;-1:-1:-1;40881:16:0;40856:41;;40919:7;40908:5;40914:1;40908:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;40946:5;40761:198;-1:-1:-1;;40761:198:0:o;54360:440::-;54553:66;54580:8;54590:4;54596:2;54600:3;54605:7;54614:4;54553:26;:66::i;:::-;-1:-1:-1;;;;;54636:16:0;;54632:161;;54674:9;54669:113;54693:3;:10;54689:1;:14;54669:113;;;54756:7;54764:1;54756:10;;;;;;;;:::i;:::-;;;;;;;54729:15;:23;54745:3;54749:1;54745:6;;;;;;;;:::i;:::-;;;;;;;54729:23;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;-1:-1:-1;54705:3:0;;-1:-1:-1;54705:3:0;;:::i;:::-;;;54669:113;;39188:744;-1:-1:-1;;;;;39403:13:0;;7855:20;7903:8;39399:526;;39439:72;;;;;-1:-1:-1;;;;;39439:38:0;;;;;:72;;39478:8;;39488:4;;39494:2;;39498:6;;39506:4;;39439:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39439:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39435:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;39787:6;39780:14;;-1:-1:-1;;;39780:14:0;;;;;;;;:::i;39435:479::-;;;39836:62;;-1:-1:-1;;;39836:62:0;;28170:2:1;39836:62:0;;;28152:21:1;28209:2;28189:18;;;28182:30;28248:34;28228:18;;;28221:62;28319:22;28299:18;;;28292:50;28359:19;;39836:62:0;27968:416:1;39435:479:0;39561:55;;;39573:43;39561:55;39557:154;;39641:50;;-1:-1:-1;;;39641:50:0;;28591:2:1;39641:50:0;;;28573:21:1;28630:2;28610:18;;;28603:30;28669:34;28649:18;;;28642:62;28740:10;28720:18;;;28713:38;28768:19;;39641:50:0;28389:404:1;39940:813:0;-1:-1:-1;;;;;40180:13:0;;7855:20;7903:8;40176:570;;40216:79;;;;;-1:-1:-1;;;;;40216:43:0;;;;;:79;;40260:8;;40270:4;;40276:3;;40281:7;;40290:4;;40216:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40216:79:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40212:523;;;;:::i;:::-;40377:60;;;40389:48;40377:60;40373:159;;40462:50;;-1:-1:-1;;;40462:50:0;;28591:2:1;40462:50:0;;;28573:21:1;28630:2;28610:18;;;28603:30;28669:34;28649:18;;;28642:62;28740:10;28720:18;;;28713:38;28768:19;;40462:50:0;28389:404:1;42105:655:0;-1:-1:-1;;;;;42427:18:0;;42423:160;;42467:9;42462:110;42486:3;:10;42482:1;:14;42462:110;;;42546:7;42554:1;42546:10;;;;;;;;:::i;:::-;;;;;;;42522:12;:20;42535:3;42539:1;42535:6;;;;;;;;:::i;:::-;;;;;;;42522:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;42498:3:0;;-1:-1:-1;42498:3:0;;:::i;:::-;;;42462:110;;;;42423:160;-1:-1:-1;;;;;42599:16:0;;42595:158;;42637:9;42632:110;42656:3;:10;42652:1;:14;42632:110;;;42716:7;42724:1;42716:10;;;;;;;;:::i;:::-;;;;;;;42692:12;:20;42705:3;42709:1;42705:6;;;;;;;;:::i;:::-;;;;;;;42692:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;42668:3:0;;-1:-1:-1;42668:3:0;;:::i;:::-;;;42632:110;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207:196:1;275:20;;-1:-1:-1;;;;;324:54:1;;314:65;;304:93;;393:1;390;383:12;304:93;207:196;;;:::o;408:254::-;476:6;484;537:2;525:9;516:7;512:23;508:32;505:52;;;553:1;550;543:12;505:52;576:29;595:9;576:29;:::i;:::-;566:39;652:2;637:18;;;;624:32;;-1:-1:-1;;;408:254:1:o;849:177::-;934:66;927:5;923:78;916:5;913:89;903:117;;1016:1;1013;1006:12;1031:245;1089:6;1142:2;1130:9;1121:7;1117:23;1113:32;1110:52;;;1158:1;1155;1148:12;1110:52;1197:9;1184:23;1216:30;1240:5;1216:30;:::i;:::-;1265:5;1031:245;-1:-1:-1;;;1031:245:1:o;1473:258::-;1545:1;1555:113;1569:6;1566:1;1563:13;1555:113;;;1645:11;;;1639:18;1626:11;;;1619:39;1591:2;1584:10;1555:113;;;1686:6;1683:1;1680:13;1677:48;;;1721:1;1712:6;1707:3;1703:16;1696:27;1677:48;;1473:258;;;:::o;1736:317::-;1778:3;1816:5;1810:12;1843:6;1838:3;1831:19;1859:63;1915:6;1908:4;1903:3;1899:14;1892:4;1885:5;1881:16;1859:63;:::i;:::-;1967:2;1955:15;1972:66;1951:88;1942:98;;;;2042:4;1938:109;;1736:317;-1:-1:-1;;1736:317:1:o;2058:220::-;2207:2;2196:9;2189:21;2170:4;2227:45;2268:2;2257:9;2253:18;2245:6;2227:45;:::i;2283:251::-;2367:6;2420:2;2408:9;2399:7;2395:23;2391:32;2388:52;;;2436:1;2433;2426:12;2388:52;2475:7;2470:2;2459:9;2455:18;2452:31;2449:51;;;2496:1;2493;2486:12;2539:180;2598:6;2651:2;2639:9;2630:7;2626:23;2622:32;2619:52;;;2667:1;2664;2657:12;2619:52;-1:-1:-1;2690:23:1;;2539:180;-1:-1:-1;2539:180:1:o;2724:322::-;2801:6;2809;2817;2870:2;2858:9;2849:7;2845:23;2841:32;2838:52;;;2886:1;2883;2876:12;2838:52;2909:29;2928:9;2909:29;:::i;:::-;2899:39;2985:2;2970:18;;2957:32;;-1:-1:-1;3036:2:1;3021:18;;;3008:32;;2724:322;-1:-1:-1;;;2724:322:1:o;3051:184::-;3103:77;3100:1;3093:88;3200:4;3197:1;3190:15;3224:4;3221:1;3214:15;3240:308;3346:66;3341:2;3335:4;3331:13;3327:86;3319:6;3315:99;3480:6;3468:10;3465:22;3444:18;3432:10;3429:34;3426:62;3423:88;;;3491:18;;:::i;:::-;3527:2;3520:22;-1:-1:-1;;3240:308:1:o;3553:183::-;3613:4;3646:18;3638:6;3635:30;3632:56;;;3668:18;;:::i;:::-;-1:-1:-1;3713:1:1;3709:14;3725:4;3705:25;;3553:183::o;3741:724::-;3795:5;3848:3;3841:4;3833:6;3829:17;3825:27;3815:55;;3866:1;3863;3856:12;3815:55;3902:6;3889:20;3928:4;3951:43;3991:2;3951:43;:::i;:::-;4023:2;4017:9;4035:31;4063:2;4055:6;4035:31;:::i;:::-;4101:18;;;4193:1;4189:10;;;;4177:23;;4173:32;;;4135:15;;;;-1:-1:-1;4217:15:1;;;4214:35;;;4245:1;4242;4235:12;4214:35;4281:2;4273:6;4269:15;4293:142;4309:6;4304:3;4301:15;4293:142;;;4375:17;;4363:30;;4413:12;;;;4326;;4293:142;;;-1:-1:-1;4453:6:1;3741:724;-1:-1:-1;;;;;;3741:724:1:o;4470:614::-;4512:5;4565:3;4558:4;4550:6;4546:17;4542:27;4532:55;;4583:1;4580;4573:12;4532:55;4619:6;4606:20;4645:18;4641:2;4638:26;4635:52;;;4667:18;;:::i;:::-;4716:2;4710:9;4728:126;4848:4;4779:66;4772:4;4768:2;4764:13;4760:86;4756:97;4748:6;4728:126;:::i;:::-;4878:2;4870:6;4863:18;4924:3;4917:4;4912:2;4904:6;4900:15;4896:26;4893:35;4890:55;;;4941:1;4938;4931:12;4890:55;5005:2;4998:4;4990:6;4986:17;4979:4;4971:6;4967:17;4954:54;5052:1;5028:15;;;5045:4;5024:26;5017:37;;;;5032:6;4470:614;-1:-1:-1;;;4470:614:1:o;5089:943::-;5243:6;5251;5259;5267;5275;5328:3;5316:9;5307:7;5303:23;5299:33;5296:53;;;5345:1;5342;5335:12;5296:53;5368:29;5387:9;5368:29;:::i;:::-;5358:39;;5416:38;5450:2;5439:9;5435:18;5416:38;:::i;:::-;5406:48;;5505:2;5494:9;5490:18;5477:32;5528:18;5569:2;5561:6;5558:14;5555:34;;;5585:1;5582;5575:12;5555:34;5608:61;5661:7;5652:6;5641:9;5637:22;5608:61;:::i;:::-;5598:71;;5722:2;5711:9;5707:18;5694:32;5678:48;;5751:2;5741:8;5738:16;5735:36;;;5767:1;5764;5757:12;5735:36;5790:63;5845:7;5834:8;5823:9;5819:24;5790:63;:::i;:::-;5780:73;;5906:3;5895:9;5891:19;5878:33;5862:49;;5936:2;5926:8;5923:16;5920:36;;;5952:1;5949;5942:12;5920:36;;5975:51;6018:7;6007:8;5996:9;5992:24;5975:51;:::i;:::-;5965:61;;;5089:943;;;;;;;;:::o;6037:466::-;6145:6;6153;6197:9;6188:7;6184:23;6227:2;6223;6219:11;6216:31;;;6243:1;6240;6233:12;6216:31;6267:2;6263;6259:11;6256:31;;;6283:1;6280;6273:12;6256:31;;6306:9;6296:19;;6366:2;6355:9;6351:18;6338:32;6393:18;6385:6;6382:30;6379:50;;;6425:1;6422;6415:12;6379:50;6448:49;6489:7;6480:6;6469:9;6465:22;6448:49;:::i;:::-;6438:59;;;6037:466;;;;;:::o;6508:1208::-;6626:6;6634;6687:2;6675:9;6666:7;6662:23;6658:32;6655:52;;;6703:1;6700;6693:12;6655:52;6743:9;6730:23;6772:18;6813:2;6805:6;6802:14;6799:34;;;6829:1;6826;6819:12;6799:34;6867:6;6856:9;6852:22;6842:32;;6912:7;6905:4;6901:2;6897:13;6893:27;6883:55;;6934:1;6931;6924:12;6883:55;6970:2;6957:16;6992:4;7015:43;7055:2;7015:43;:::i;:::-;7087:2;7081:9;7099:31;7127:2;7119:6;7099:31;:::i;:::-;7165:18;;;7253:1;7249:10;;;;7241:19;;7237:28;;;7199:15;;;;-1:-1:-1;7277:19:1;;;7274:39;;;7309:1;7306;7299:12;7274:39;7333:11;;;;7353:148;7369:6;7364:3;7361:15;7353:148;;;7435:23;7454:3;7435:23;:::i;:::-;7423:36;;7386:12;;;;7479;;;;7353:148;;;7520:6;-1:-1:-1;;7564:18:1;;7551:32;;-1:-1:-1;;7595:16:1;;;7592:36;;;7624:1;7621;7614:12;7592:36;;7647:63;7702:7;7691:8;7680:9;7676:24;7647:63;:::i;7721:435::-;7774:3;7812:5;7806:12;7839:6;7834:3;7827:19;7865:4;7894:2;7889:3;7885:12;7878:19;;7931:2;7924:5;7920:14;7952:1;7962:169;7976:6;7973:1;7970:13;7962:169;;;8037:13;;8025:26;;8071:12;;;;8106:15;;;;7998:1;7991:9;7962:169;;;-1:-1:-1;8147:3:1;;7721:435;-1:-1:-1;;;;;7721:435:1:o;8161:261::-;8340:2;8329:9;8322:21;8303:4;8360:56;8412:2;8401:9;8397:18;8389:6;8360:56;:::i;8427:389::-;8505:6;8513;8566:2;8554:9;8545:7;8541:23;8537:32;8534:52;;;8582:1;8579;8572:12;8534:52;8618:9;8605:23;8595:33;;8679:2;8668:9;8664:18;8651:32;8706:18;8698:6;8695:30;8692:50;;;8738:1;8735;8728:12;8821:669;8948:6;8956;8964;9017:2;9005:9;8996:7;8992:23;8988:32;8985:52;;;9033:1;9030;9023:12;8985:52;9056:29;9075:9;9056:29;:::i;:::-;9046:39;;9136:2;9125:9;9121:18;9108:32;9159:18;9200:2;9192:6;9189:14;9186:34;;;9216:1;9213;9206:12;9186:34;9239:61;9292:7;9283:6;9272:9;9268:22;9239:61;:::i;:::-;9229:71;;9353:2;9342:9;9338:18;9325:32;9309:48;;9382:2;9372:8;9369:16;9366:36;;;9398:1;9395;9388:12;9366:36;;9421:63;9476:7;9465:8;9454:9;9450:24;9421:63;:::i;:::-;9411:73;;;8821:669;;;;;:::o;9495:186::-;9554:6;9607:2;9595:9;9586:7;9582:23;9578:32;9575:52;;;9623:1;9620;9613:12;9575:52;9646:29;9665:9;9646:29;:::i;9686:792::-;9911:2;9963:21;;;10033:13;;9936:18;;;10055:22;;;9882:4;;9911:2;10096;;10114:18;;;;10155:15;;;9882:4;10198:254;10212:6;10209:1;10206:13;10198:254;;;10271:13;;10309:9;;10297:22;;10359:11;;10353:18;10339:12;;;10332:40;10392:12;;;;10427:15;;;;10234:1;10227:9;10198:254;;;-1:-1:-1;10469:3:1;;9686:792;-1:-1:-1;;;;;;;9686:792:1:o;10714:321::-;10783:6;10836:2;10824:9;10815:7;10811:23;10807:32;10804:52;;;10852:1;10849;10842:12;10804:52;10892:9;10879:23;10925:18;10917:6;10914:30;10911:50;;;10957:1;10954;10947:12;10911:50;10980:49;11021:7;11012:6;11001:9;10997:22;10980:49;:::i;11040:118::-;11126:5;11119:13;11112:21;11105:5;11102:32;11092:60;;11148:1;11145;11138:12;11163:315;11228:6;11236;11289:2;11277:9;11268:7;11264:23;11260:32;11257:52;;;11305:1;11302;11295:12;11257:52;11328:29;11347:9;11328:29;:::i;:::-;11318:39;;11407:2;11396:9;11392:18;11379:32;11420:28;11442:5;11420:28;:::i;:::-;11467:5;11457:15;;;11163:315;;;;;:::o;11483:241::-;11539:6;11592:2;11580:9;11571:7;11567:23;11563:32;11560:52;;;11608:1;11605;11598:12;11560:52;11647:9;11634:23;11666:28;11688:5;11666:28;:::i;11729:260::-;11797:6;11805;11858:2;11846:9;11837:7;11833:23;11829:32;11826:52;;;11874:1;11871;11864:12;11826:52;11897:29;11916:9;11897:29;:::i;:::-;11887:39;;11945:38;11979:2;11968:9;11964:18;11945:38;:::i;:::-;11935:48;;11729:260;;;;;:::o;11994:606::-;12098:6;12106;12114;12122;12130;12183:3;12171:9;12162:7;12158:23;12154:33;12151:53;;;12200:1;12197;12190:12;12151:53;12223:29;12242:9;12223:29;:::i;:::-;12213:39;;12271:38;12305:2;12294:9;12290:18;12271:38;:::i;:::-;12261:48;;12356:2;12345:9;12341:18;12328:32;12318:42;;12407:2;12396:9;12392:18;12379:32;12369:42;;12462:3;12451:9;12447:19;12434:33;12490:18;12482:6;12479:30;12476:50;;;12522:1;12519;12512:12;12476:50;12545:49;12586:7;12577:6;12566:9;12562:22;12545:49;:::i;12878:309::-;12943:6;12951;13004:2;12992:9;12983:7;12979:23;12975:32;12972:52;;;13020:1;13017;13010:12;12972:52;13056:9;13043:23;13033:33;;13116:2;13105:9;13101:18;13088:32;13129:28;13151:5;13129:28;:::i;13604:184::-;13656:77;13653:1;13646:88;13753:4;13750:1;13743:15;13777:4;13774:1;13767:15;14497:437;14576:1;14572:12;;;;14619;;;14640:61;;14694:4;14686:6;14682:17;14672:27;;14640:61;14747:2;14739:6;14736:14;14716:18;14713:38;14710:218;;;14784:77;14781:1;14774:88;14885:4;14882:1;14875:15;14913:4;14910:1;14903:15;14939:626;15208:3;15246:6;15240:13;15262:53;15308:6;15303:3;15296:4;15288:6;15284:17;15262:53;:::i;:::-;15378:13;;15337:16;;;;15400:57;15378:13;15337:16;15434:4;15422:17;;15400:57;:::i;:::-;15522:7;15479:20;;15508:22;;;15557:1;15546:13;;14939:626;-1:-1:-1;;;;14939:626:1:o;17028:184::-;17080:77;17077:1;17070:88;17177:4;17174:1;17167:15;17201:4;17198:1;17191:15;17217:197;17255:3;17283:6;17324:2;17317:5;17313:14;17351:2;17342:7;17339:15;17336:41;;;17357:18;;:::i;:::-;17406:1;17393:15;;17217:197;-1:-1:-1;;;17217:197:1:o;17419:656::-;17590:5;17577:19;17605:30;17627:7;17605:30;:::i;:::-;17654:11;;17750:66;17742:75;;17695:15;;17688:23;17713:3;17684:33;17739:83;;;17726:97;;17871:2;17860:14;;17847:28;17884:30;17847:28;17884:30;:::i;:::-;17950:66;17942:75;;;;17939:83;;;18042:15;;18035:23;18032:1;18028:31;18061:5;18024:43;17936:132;17923:146;;-1:-1:-1;17419:656:1:o;18490:195::-;18529:3;18560:66;18553:5;18550:77;18547:103;;;18630:18;;:::i;:::-;-1:-1:-1;18677:1:1;18666:13;;18490:195::o;19034:340::-;19211:2;19200:9;19193:21;19174:4;19231:45;19272:2;19261:9;19257:18;19249:6;19231:45;:::i;:::-;19223:53;;-1:-1:-1;;;;;19316:6:1;19312:55;19307:2;19296:9;19292:18;19285:83;19034:340;;;;;:::o;20090:125::-;20130:4;20158:1;20155;20152:8;20149:34;;;20163:18;;:::i;:::-;-1:-1:-1;20200:9:1;;20090:125::o;21254:128::-;21294:3;21325:1;21321:6;21318:1;21315:13;21312:39;;;21331:18;;:::i;:::-;-1:-1:-1;21367:9:1;;21254:128::o;22204:184::-;22256:77;22253:1;22246:88;22353:4;22350:1;22343:15;22377:4;22374:1;22367:15;22393:120;22433:1;22459;22449:35;;22464:18;;:::i;:::-;-1:-1:-1;22498:9:1;;22393:120::o;22518:112::-;22550:1;22576;22566:35;;22581:18;;:::i;:::-;-1:-1:-1;22615:9:1;;22518:112::o;24516:465::-;24773:2;24762:9;24755:21;24736:4;24799:56;24851:2;24840:9;24836:18;24828:6;24799:56;:::i;:::-;24903:9;24895:6;24891:22;24886:2;24875:9;24871:18;24864:50;24931:44;24968:6;24960;24931:44;:::i;:::-;24923:52;24516:465;-1:-1:-1;;;;;24516:465:1:o;26205:584::-;26427:4;-1:-1:-1;;;;;26537:2:1;26529:6;26525:15;26514:9;26507:34;26589:2;26581:6;26577:15;26572:2;26561:9;26557:18;26550:43;;26629:6;26624:2;26613:9;26609:18;26602:34;26672:6;26667:2;26656:9;26652:18;26645:34;26716:3;26710;26699:9;26695:19;26688:32;26737:46;26778:3;26767:9;26763:19;26755:6;26737:46;:::i;:::-;26729:54;26205:584;-1:-1:-1;;;;;;;26205:584:1:o;26794:249::-;26863:6;26916:2;26904:9;26895:7;26891:23;26887:32;26884:52;;;26932:1;26929;26922:12;26884:52;26964:9;26958:16;26983:30;27007:5;26983:30;:::i;27048:179::-;27083:3;27125:1;27107:16;27104:23;27101:120;;;27171:1;27168;27165;27150:23;-1:-1:-1;27208:1:1;27202:8;27197:3;27193:18;27101:120;27048:179;:::o;27232:731::-;27271:3;27313:4;27295:16;27292:26;27289:39;;;27232:731;:::o;27289:39::-;27355:2;27349:9;27377:66;27498:2;27480:16;27476:25;27473:1;27467:4;27452:50;27531:4;27525:11;27555:16;27590:18;27661:2;27654:4;27646:6;27642:17;27639:25;27634:2;27626:6;27623:14;27620:45;27617:58;;;27668:5;;;;;27232:731;:::o;27617:58::-;27705:6;27699:4;27695:17;27684:28;;27741:3;27735:10;27768:2;27760:6;27757:14;27754:27;;;27774:5;;;;;;27232:731;:::o;27754:27::-;27858:2;27839:16;27833:4;27829:27;27825:36;27818:4;27809:6;27804:3;27800:16;27796:27;27793:69;27790:82;;;27865:5;;;;;;27232:731;:::o;27790:82::-;27881:57;27932:4;27923:6;27915;27911:19;27907:30;27901:4;27881:57;:::i;:::-;-1:-1:-1;27954:3:1;;27232:731;-1:-1:-1;;;;;27232:731:1:o;28798:850::-;29120:4;-1:-1:-1;;;;;29230:2:1;29222:6;29218:15;29207:9;29200:34;29282:2;29274:6;29270:15;29265:2;29254:9;29250:18;29243:43;;29322:3;29317:2;29306:9;29302:18;29295:31;29349:57;29401:3;29390:9;29386:19;29378:6;29349:57;:::i;:::-;29454:9;29446:6;29442:22;29437:2;29426:9;29422:18;29415:50;29488:44;29525:6;29517;29488:44;:::i;:::-;29474:58;;29581:9;29573:6;29569:22;29563:3;29552:9;29548:19;29541:51;29609:33;29635:6;29627;29609:33;:::i;:::-;29601:41;28798:850;-1:-1:-1;;;;;;;;28798:850:1:o

Swarm Source

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