POL Price: $0.702205 (-1.68%)
Gas: 35 GWei
 

Overview

POL Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 POL

POL Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve547654542024-03-17 12:12:51265 days ago1710677571IN
0x9C5d4456...21A66E4FA
0 POL0.0017704739.1664009
Approve547530482024-03-17 4:25:59265 days ago1710649559IN
0x9C5d4456...21A66E4FA
0 POL0.0013561330.04022483
Approve547320992024-03-16 15:30:03266 days ago1710603003IN
0x9C5d4456...21A66E4FA
0 POL0.0024756554.76623907
Approve538753232024-02-23 20:13:13288 days ago1708719193IN
0x9C5d4456...21A66E4FA
0 POL0.0031923870.62165504
Approve538740592024-02-23 19:24:10288 days ago1708716250IN
0x9C5d4456...21A66E4FA
0 POL0.0030169766.74142076

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ArcarteraNeo

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2024-02-21
*/

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


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: ArcarteraNeo.sol


pragma solidity ^0.8.24;





contract ArcarteraNeo is IERC20, Ownable {
    using SafeMath for uint256;

    string private _name;
    string private _symbol;
    uint256 private _decimals;
    uint256 private _totalSupply;

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    address private _originalTokenCreator;
    uint256 private _kickbackRate = 5; // 5% kickback rate

    constructor() Ownable(msg.sender) {
        _name = "Arcartera Neo";
        _symbol = "ARCN";
        _decimals = 18;
        _totalSupply = 88000000000 * (10 ** _decimals);
        _balances[msg.sender] = _totalSupply;
        _originalTokenCreator = msg.sender;
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

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

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount <= _balances[msg.sender], "ERC20: transfer amount exceeds balance");

        uint256 kickbackAmount = amount.mul(_kickbackRate).div(100);
        uint256 transferAmount = amount.sub(kickbackAmount);

        _balances[msg.sender] = _balances[msg.sender].sub(amount);
        _balances[recipient] = _balances[recipient].add(transferAmount);

        _balances[_originalTokenCreator] = _balances[_originalTokenCreator].add(kickbackAmount);

        emit Transfer(msg.sender, recipient, transferAmount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        uint256 currentAllowance = _allowances[sender][msg.sender];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, msg.sender, currentAllowance - amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender] + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        uint256 currentAllowance = _allowances[msg.sender][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(msg.sender, spender, currentAllowance - subtractedValue);
        return true;
    }

    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        uint256 kickbackAmount = amount.mul(_kickbackRate).div(100);
        uint256 transferAmount = amount.sub(kickbackAmount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(transferAmount);

        _balances[_originalTokenCreator] = _balances[_originalTokenCreator].add(kickbackAmount);
    }

    function _approve(address owner, address spender, uint256 amount) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600560085534801562000015575f80fd5b50335f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200008a575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620000819190620002e9565b60405180910390fd5b6200009b81620001e560201b60201c565b506040518060400160405280600d81526020017f417263617274657261204e656f0000000000000000000000000000000000000081525060019081620000e2919062000568565b506040518060400160405280600481526020017f4152434e000000000000000000000000000000000000000000000000000000008152506002908162000129919062000568565b506012600381905550600354600a620001439190620007c9565b64147d35700062000155919062000819565b60048190555060045460055f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503360075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000863565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620002d182620002a6565b9050919050565b620002e381620002c5565b82525050565b5f602082019050620002fe5f830184620002d8565b92915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200038057607f821691505b6020821081036200039657620003956200033b565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620003fa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003bd565b620004068683620003bd565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004506200044a62000444846200041e565b62000427565b6200041e565b9050919050565b5f819050919050565b6200046b8362000430565b620004836200047a8262000457565b848454620003c9565b825550505050565b5f90565b620004996200048b565b620004a681848462000460565b505050565b5b81811015620004cd57620004c15f826200048f565b600181019050620004ac565b5050565b601f8211156200051c57620004e6816200039c565b620004f184620003ae565b8101602085101562000501578190505b620005196200051085620003ae565b830182620004ab565b50505b505050565b5f82821c905092915050565b5f6200053e5f198460080262000521565b1980831691505092915050565b5f6200055883836200052d565b9150826002028217905092915050565b620005738262000304565b67ffffffffffffffff8111156200058f576200058e6200030e565b5b6200059b825462000368565b620005a8828285620004d1565b5f60209050601f831160018114620005de575f8415620005c9578287015190505b620005d585826200054b565b86555062000644565b601f198416620005ee866200039c565b5f5b828110156200061757848901518255600182019150602085019450602081019050620005f0565b8683101562000637578489015162000633601f8916826200052d565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620006d657808604811115620006ae57620006ad6200064c565b5b6001851615620006be5780820291505b8081029050620006ce8562000679565b94506200068e565b94509492505050565b5f82620006f05760019050620007c2565b81620006ff575f9050620007c2565b8160018114620007185760028114620007235762000759565b6001915050620007c2565b60ff8411156200073857620007376200064c565b5b8360020a9150848211156200075257620007516200064c565b5b50620007c2565b5060208310610133831016604e8410600b8410161715620007935782820a9050838111156200078d576200078c6200064c565b5b620007c2565b620007a2848484600162000685565b92509050818404811115620007bc57620007bb6200064c565b5b81810290505b9392505050565b5f620007d5826200041e565b9150620007e2836200041e565b9250620008117fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006df565b905092915050565b5f62000825826200041e565b915062000832836200041e565b925082820262000842816200041e565b915082820484148315176200085c576200085b6200064c565b5b5092915050565b611acc80620008715f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c8063715018a61161008a578063a457c2d711610064578063a457c2d71461024c578063a9059cbb1461027c578063dd62ed3e146102ac578063f2fde38b146102dc576100e8565b8063715018a6146102065780638da5cb5b1461021057806395d89b411461022e576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806370a08231146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102f8565b60405161010191906112d5565b60405180910390f35b610124600480360381019061011f9190611386565b610388565b60405161013191906113de565b60405180910390f35b61014261039e565b60405161014f9190611406565b60405180910390f35b610172600480360381019061016d919061141f565b6103a7565b60405161017f91906113de565b60405180910390f35b610190610494565b60405161019d9190611406565b60405180910390f35b6101c060048036038101906101bb9190611386565b61049d565b6040516101cd91906113de565b60405180910390f35b6101f060048036038101906101eb919061146f565b610536565b6040516101fd9190611406565b60405180910390f35b61020e61057c565b005b61021861058f565b60405161022591906114a9565b60405180910390f35b6102366105b6565b60405161024391906112d5565b60405180910390f35b61026660048036038101906102619190611386565b610646565b60405161027391906113de565b60405180910390f35b61029660048036038101906102919190611386565b610727565b6040516102a391906113de565b60405180910390f35b6102c660048036038101906102c191906114c2565b610abd565b6040516102d39190611406565b60405180910390f35b6102f660048036038101906102f1919061146f565b610b3f565b005b6060600180546103079061152d565b80601f01602080910402602001604051908101604052809291908181526020018280546103339061152d565b801561037e5780601f106103555761010080835404028352916020019161037e565b820191905f5260205f20905b81548152906001019060200180831161036157829003601f168201915b5050505050905090565b5f610394338484610bc3565b6001905092915050565b5f600454905090565b5f6103b3848484610d21565b5f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610472576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610469906115cd565b60405180910390fd5b610488853385846104839190611618565b610bc3565b60019150509392505050565b5f600354905090565b5f61052c33848460065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610527919061164b565b610bc3565b6001905092915050565b5f60055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610584611054565b61058d5f6110db565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546105c59061152d565b80601f01602080910402602001604051908101604052809291908181526020018280546105f19061152d565b801561063c5780601f106106135761010080835404028352916020019161063c565b820191905f5260205f20905b81548152906001019060200180831161061f57829003601f168201915b5050505050905090565b5f8060065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fd906116ee565b60405180910390fd5b61071c338585846107179190611618565b610bc3565b600191505092915050565b5f8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078d9061177c565b60405180910390fd5b60055f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054821115610816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080d9061180a565b60405180910390fd5b5f61083f60646108316008548661119c90919063ffffffff16565b6111b190919063ffffffff16565b90505f61085582856111c690919063ffffffff16565b90506108a78460055f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111c690919063ffffffff16565b60055f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506109388160055f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111db90919063ffffffff16565b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506109ea8260055f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111db90919063ffffffff16565b60055f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610aa99190611406565b60405180910390a360019250505092915050565b5f60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b47611054565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bb7575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610bae91906114a9565b60405180910390fd5b610bc0816110db565b50565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890611898565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9690611926565b60405180910390fd5b8060065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d86906119b4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df49061177c565b60405180910390fd5b5f610e266064610e186008548561119c90919063ffffffff16565b6111b190919063ffffffff16565b90505f610e3c82846111c690919063ffffffff16565b9050610ea883604051806060016040528060268152602001611a716026913960055f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111f09092919063ffffffff16565b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610f398160055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111db90919063ffffffff16565b60055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610feb8260055f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111db90919063ffffffff16565b60055f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050505050565b61105c611244565b73ffffffffffffffffffffffffffffffffffffffff1661107a61058f565b73ffffffffffffffffffffffffffffffffffffffff16146110d95761109d611244565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016110d091906114a9565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81836111a991906119d2565b905092915050565b5f81836111be9190611a40565b905092915050565b5f81836111d39190611618565b905092915050565b5f81836111e8919061164b565b905092915050565b5f838311158290611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e91906112d5565b60405180910390fd5b5082840390509392505050565b5f33905090565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611282578082015181840152602081019050611267565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6112a78261124b565b6112b18185611255565b93506112c1818560208601611265565b6112ca8161128d565b840191505092915050565b5f6020820190508181035f8301526112ed818461129d565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611322826112f9565b9050919050565b61133281611318565b811461133c575f80fd5b50565b5f8135905061134d81611329565b92915050565b5f819050919050565b61136581611353565b811461136f575f80fd5b50565b5f813590506113808161135c565b92915050565b5f806040838503121561139c5761139b6112f5565b5b5f6113a98582860161133f565b92505060206113ba85828601611372565b9150509250929050565b5f8115159050919050565b6113d8816113c4565b82525050565b5f6020820190506113f15f8301846113cf565b92915050565b61140081611353565b82525050565b5f6020820190506114195f8301846113f7565b92915050565b5f805f60608486031215611436576114356112f5565b5b5f6114438682870161133f565b93505060206114548682870161133f565b925050604061146586828701611372565b9150509250925092565b5f60208284031215611484576114836112f5565b5b5f6114918482850161133f565b91505092915050565b6114a381611318565b82525050565b5f6020820190506114bc5f83018461149a565b92915050565b5f80604083850312156114d8576114d76112f5565b5b5f6114e58582860161133f565b92505060206114f68582860161133f565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061154457607f821691505b60208210810361155757611556611500565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6115b7602883611255565b91506115c28261155d565b604082019050919050565b5f6020820190508181035f8301526115e4816115ab565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61162282611353565b915061162d83611353565b9250828203905081811115611645576116446115eb565b5b92915050565b5f61165582611353565b915061166083611353565b9250828201905080821115611678576116776115eb565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6116d8602583611255565b91506116e38261167e565b604082019050919050565b5f6020820190508181035f830152611705816116cc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611766602383611255565b91506117718261170c565b604082019050919050565b5f6020820190508181035f8301526117938161175a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6117f4602683611255565b91506117ff8261179a565b604082019050919050565b5f6020820190508181035f830152611821816117e8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611882602483611255565b915061188d82611828565b604082019050919050565b5f6020820190508181035f8301526118af81611876565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611910602283611255565b915061191b826118b6565b604082019050919050565b5f6020820190508181035f83015261193d81611904565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61199e602583611255565b91506119a982611944565b604082019050919050565b5f6020820190508181035f8301526119cb81611992565b9050919050565b5f6119dc82611353565b91506119e783611353565b92508282026119f581611353565b91508282048414831517611a0c57611a0b6115eb565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611a4a82611353565b9150611a5583611353565b925082611a6557611a64611a13565b5b82820490509291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a2646970667358221220a4a6bdcb38560448fcf4fa4e10659259c59a04e91f9b0366bacdd564d3bb0bb664736f6c63430008180033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c8063715018a61161008a578063a457c2d711610064578063a457c2d71461024c578063a9059cbb1461027c578063dd62ed3e146102ac578063f2fde38b146102dc576100e8565b8063715018a6146102065780638da5cb5b1461021057806395d89b411461022e576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806370a08231146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102f8565b60405161010191906112d5565b60405180910390f35b610124600480360381019061011f9190611386565b610388565b60405161013191906113de565b60405180910390f35b61014261039e565b60405161014f9190611406565b60405180910390f35b610172600480360381019061016d919061141f565b6103a7565b60405161017f91906113de565b60405180910390f35b610190610494565b60405161019d9190611406565b60405180910390f35b6101c060048036038101906101bb9190611386565b61049d565b6040516101cd91906113de565b60405180910390f35b6101f060048036038101906101eb919061146f565b610536565b6040516101fd9190611406565b60405180910390f35b61020e61057c565b005b61021861058f565b60405161022591906114a9565b60405180910390f35b6102366105b6565b60405161024391906112d5565b60405180910390f35b61026660048036038101906102619190611386565b610646565b60405161027391906113de565b60405180910390f35b61029660048036038101906102919190611386565b610727565b6040516102a391906113de565b60405180910390f35b6102c660048036038101906102c191906114c2565b610abd565b6040516102d39190611406565b60405180910390f35b6102f660048036038101906102f1919061146f565b610b3f565b005b6060600180546103079061152d565b80601f01602080910402602001604051908101604052809291908181526020018280546103339061152d565b801561037e5780601f106103555761010080835404028352916020019161037e565b820191905f5260205f20905b81548152906001019060200180831161036157829003601f168201915b5050505050905090565b5f610394338484610bc3565b6001905092915050565b5f600454905090565b5f6103b3848484610d21565b5f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610472576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610469906115cd565b60405180910390fd5b610488853385846104839190611618565b610bc3565b60019150509392505050565b5f600354905090565b5f61052c33848460065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610527919061164b565b610bc3565b6001905092915050565b5f60055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610584611054565b61058d5f6110db565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546105c59061152d565b80601f01602080910402602001604051908101604052809291908181526020018280546105f19061152d565b801561063c5780601f106106135761010080835404028352916020019161063c565b820191905f5260205f20905b81548152906001019060200180831161061f57829003601f168201915b5050505050905090565b5f8060065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fd906116ee565b60405180910390fd5b61071c338585846107179190611618565b610bc3565b600191505092915050565b5f8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078d9061177c565b60405180910390fd5b60055f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054821115610816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080d9061180a565b60405180910390fd5b5f61083f60646108316008548661119c90919063ffffffff16565b6111b190919063ffffffff16565b90505f61085582856111c690919063ffffffff16565b90506108a78460055f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111c690919063ffffffff16565b60055f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506109388160055f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111db90919063ffffffff16565b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506109ea8260055f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111db90919063ffffffff16565b60055f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610aa99190611406565b60405180910390a360019250505092915050565b5f60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b47611054565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bb7575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610bae91906114a9565b60405180910390fd5b610bc0816110db565b50565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890611898565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9690611926565b60405180910390fd5b8060065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d86906119b4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df49061177c565b60405180910390fd5b5f610e266064610e186008548561119c90919063ffffffff16565b6111b190919063ffffffff16565b90505f610e3c82846111c690919063ffffffff16565b9050610ea883604051806060016040528060268152602001611a716026913960055f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111f09092919063ffffffff16565b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610f398160055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111db90919063ffffffff16565b60055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610feb8260055f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111db90919063ffffffff16565b60055f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050505050565b61105c611244565b73ffffffffffffffffffffffffffffffffffffffff1661107a61058f565b73ffffffffffffffffffffffffffffffffffffffff16146110d95761109d611244565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016110d091906114a9565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81836111a991906119d2565b905092915050565b5f81836111be9190611a40565b905092915050565b5f81836111d39190611618565b905092915050565b5f81836111e8919061164b565b905092915050565b5f838311158290611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e91906112d5565b60405180910390fd5b5082840390509392505050565b5f33905090565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611282578082015181840152602081019050611267565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6112a78261124b565b6112b18185611255565b93506112c1818560208601611265565b6112ca8161128d565b840191505092915050565b5f6020820190508181035f8301526112ed818461129d565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611322826112f9565b9050919050565b61133281611318565b811461133c575f80fd5b50565b5f8135905061134d81611329565b92915050565b5f819050919050565b61136581611353565b811461136f575f80fd5b50565b5f813590506113808161135c565b92915050565b5f806040838503121561139c5761139b6112f5565b5b5f6113a98582860161133f565b92505060206113ba85828601611372565b9150509250929050565b5f8115159050919050565b6113d8816113c4565b82525050565b5f6020820190506113f15f8301846113cf565b92915050565b61140081611353565b82525050565b5f6020820190506114195f8301846113f7565b92915050565b5f805f60608486031215611436576114356112f5565b5b5f6114438682870161133f565b93505060206114548682870161133f565b925050604061146586828701611372565b9150509250925092565b5f60208284031215611484576114836112f5565b5b5f6114918482850161133f565b91505092915050565b6114a381611318565b82525050565b5f6020820190506114bc5f83018461149a565b92915050565b5f80604083850312156114d8576114d76112f5565b5b5f6114e58582860161133f565b92505060206114f68582860161133f565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061154457607f821691505b60208210810361155757611556611500565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6115b7602883611255565b91506115c28261155d565b604082019050919050565b5f6020820190508181035f8301526115e4816115ab565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61162282611353565b915061162d83611353565b9250828203905081811115611645576116446115eb565b5b92915050565b5f61165582611353565b915061166083611353565b9250828201905080821115611678576116776115eb565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6116d8602583611255565b91506116e38261167e565b604082019050919050565b5f6020820190508181035f830152611705816116cc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611766602383611255565b91506117718261170c565b604082019050919050565b5f6020820190508181035f8301526117938161175a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6117f4602683611255565b91506117ff8261179a565b604082019050919050565b5f6020820190508181035f830152611821816117e8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611882602483611255565b915061188d82611828565b604082019050919050565b5f6020820190508181035f8301526118af81611876565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611910602283611255565b915061191b826118b6565b604082019050919050565b5f6020820190508181035f83015261193d81611904565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61199e602583611255565b91506119a982611944565b604082019050919050565b5f6020820190508181035f8301526119cb81611992565b9050919050565b5f6119dc82611353565b91506119e783611353565b92508282026119f581611353565b91508282048414831517611a0c57611a0b6115eb565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611a4a82611353565b9150611a5583611353565b925082611a6557611a64611a13565b5b82820490509291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a2646970667358221220a4a6bdcb38560448fcf4fa4e10659259c59a04e91f9b0366bacdd564d3bb0bb664736f6c63430008180033

Deployed Bytecode Sourcemap

14810:4256:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15535:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16940:159;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15814:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17107:406;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15721:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17521:203;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15922:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3361:103;;;:::i;:::-;;2686:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15626;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17732:363;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16049:732;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16789:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3619:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15535:83;15572:13;15605:5;15598:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15535:83;:::o;16940:159::-;17015:4;17032:37;17041:10;17053:7;17062:6;17032:8;:37::i;:::-;17087:4;17080:11;;16940:159;;;;:::o;15814:100::-;15867:7;15894:12;;15887:19;;15814:100;:::o;17107:406::-;17205:4;17222:36;17232:6;17240:9;17251:6;17222:9;:36::i;:::-;17269:24;17296:11;:19;17308:6;17296:19;;;;;;;;;;;;;;;:31;17316:10;17296:31;;;;;;;;;;;;;;;;17269:58;;17366:6;17346:16;:26;;17338:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;17428:55;17437:6;17445:10;17476:6;17457:16;:25;;;;:::i;:::-;17428:8;:55::i;:::-;17501:4;17494:11;;;17107:406;;;;;:::o;15721:85::-;15762:7;15789:9;;15782:16;;15721:85;:::o;17521:203::-;17601:4;17618:76;17627:10;17639:7;17683:10;17648:11;:23;17660:10;17648:23;;;;;;;;;;;;;;;:32;17672:7;17648:32;;;;;;;;;;;;;;;;:45;;;;:::i;:::-;17618:8;:76::i;:::-;17712:4;17705:11;;17521:203;;;;:::o;15922:119::-;15988:7;16015:9;:18;16025:7;16015:18;;;;;;;;;;;;;;;;16008:25;;15922:119;;;:::o;3361:103::-;2572:13;:11;:13::i;:::-;3426:30:::1;3453:1;3426:18;:30::i;:::-;3361:103::o:0;2686:87::-;2732:7;2759:6;;;;;;;;;;;2752:13;;2686:87;:::o;15626:::-;15665:13;15698:7;15691:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15626:87;:::o;17732:363::-;17817:4;17834:24;17861:11;:23;17873:10;17861:23;;;;;;;;;;;;;;;:32;17885:7;17861:32;;;;;;;;;;;;;;;;17834:59;;17932:15;17912:16;:35;;17904:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;18000:65;18009:10;18021:7;18049:15;18030:16;:34;;;;:::i;:::-;18000:8;:65::i;:::-;18083:4;18076:11;;;17732:363;;;;:::o;16049:732::-;16127:4;16173:1;16152:23;;:9;:23;;;16144:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16244:9;:21;16254:10;16244:21;;;;;;;;;;;;;;;;16234:6;:31;;16226:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;16321:22;16346:34;16376:3;16346:25;16357:13;;16346:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;16321:59;;16391:22;16416:26;16427:14;16416:6;:10;;:26;;;;:::i;:::-;16391:51;;16479:33;16505:6;16479:9;:21;16489:10;16479:21;;;;;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;16455:9;:21;16465:10;16455:21;;;;;;;;;;;;;;;:57;;;;16546:40;16571:14;16546:9;:20;16556:9;16546:20;;;;;;;;;;;;;;;;:24;;:40;;;;:::i;:::-;16523:9;:20;16533:9;16523:20;;;;;;;;;;;;;;;:63;;;;16634:52;16671:14;16634:9;:32;16644:21;;;;;;;;;;;16634:32;;;;;;;;;;;;;;;;:36;;:52;;;;:::i;:::-;16599:9;:32;16609:21;;;;;;;;;;;16599:32;;;;;;;;;;;;;;;:87;;;;16725:9;16704:47;;16713:10;16704:47;;;16736:14;16704:47;;;;;;:::i;:::-;;;;;;;;16769:4;16762:11;;;;16049:732;;;;:::o;16789:143::-;16870:7;16897:11;:18;16909:5;16897:18;;;;;;;;;;;;;;;:27;16916:7;16897:27;;;;;;;;;;;;;;;;16890:34;;16789:143;;;;:::o;3619:220::-;2572:13;:11;:13::i;:::-;3724:1:::1;3704:22;;:8;:22;;::::0;3700:93:::1;;3778:1;3750:31;;;;;;;;;;;:::i;:::-;;;;;;;;3700:93;3803:28;3822:8;3803:18;:28::i;:::-;3619:220:::0;:::o;18773:290::-;18884:1;18867:19;;:5;:19;;;18859:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18965:1;18946:21;;:7;:21;;;18938:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19049:6;19019:11;:18;19031:5;19019:18;;;;;;;;;;;;;;;:27;19038:7;19019:27;;;;;;;;;;;;;;;:36;;;;18773:290;;;:::o;18103:662::-;18219:1;18201:20;;:6;:20;;;18193:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;18303:1;18282:23;;:9;:23;;;18274:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;18358:22;18383:34;18413:3;18383:25;18394:13;;18383:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;18358:59;;18428:22;18453:26;18464:14;18453:6;:10;;:26;;;;:::i;:::-;18428:51;;18512:71;18534:6;18512:71;;;;;;;;;;;;;;;;;:9;:17;18522:6;18512:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;18492:9;:17;18502:6;18492:17;;;;;;;;;;;;;;;:91;;;;18617:40;18642:14;18617:9;:20;18627:9;18617:20;;;;;;;;;;;;;;;;:24;;:40;;;;:::i;:::-;18594:9;:20;18604:9;18594:20;;;;;;;;;;;;;;;:63;;;;18705:52;18742:14;18705:9;:32;18715:21;;;;;;;;;;;18705:32;;;;;;;;;;;;;;;;:36;;:52;;;;:::i;:::-;18670:9;:32;18680:21;;;;;;;;;;;18670:32;;;;;;;;;;;;;;;:87;;;;18182:583;;18103:662;;;:::o;2851:166::-;2922:12;:10;:12::i;:::-;2911:23;;:7;:5;:7::i;:::-;:23;;;2907:103;;2985:12;:10;:12::i;:::-;2958:40;;;;;;;;;;;:::i;:::-;;;;;;;;2907:103;2851:166::o;3999:191::-;4073:16;4092:6;;;;;;;;;;;4073:25;;4118:8;4109:6;;:17;;;;;;;;;;;;;;;;;;4173:8;4142:40;;4163:8;4142:40;;;;;;;;;;;;4062:128;3999:191;:::o;7811:98::-;7869:7;7900:1;7896;:5;;;;:::i;:::-;7889:12;;7811:98;;;;:::o;8210:::-;8268:7;8299:1;8295;:5;;;;:::i;:::-;8288:12;;8210:98;;;;:::o;7454:::-;7512:7;7543:1;7539;:5;;;;:::i;:::-;7532:12;;7454:98;;;;:::o;7073:::-;7131:7;7162:1;7158;:5;;;;:::i;:::-;7151:12;;7073:98;;;;:::o;9352:206::-;9438:7;9496:1;9491;:6;;9499:12;9483:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;9538:1;9534;:5;9527:12;;9352:206;;;;;:::o;695:98::-;748:7;775:10;768:17;;695:98;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:329::-;4482:6;4531:2;4519:9;4510:7;4506:23;4502:32;4499:119;;;4537:79;;:::i;:::-;4499:119;4657:1;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4628:117;4423:329;;;;:::o;4758:118::-;4845:24;4863:5;4845:24;:::i;:::-;4840:3;4833:37;4758:118;;:::o;4882:222::-;4975:4;5013:2;5002:9;4998:18;4990:26;;5026:71;5094:1;5083:9;5079:17;5070:6;5026:71;:::i;:::-;4882:222;;;;:::o;5110:474::-;5178:6;5186;5235:2;5223:9;5214:7;5210:23;5206:32;5203:119;;;5241:79;;:::i;:::-;5203:119;5361:1;5386:53;5431:7;5422:6;5411:9;5407:22;5386:53;:::i;:::-;5376:63;;5332:117;5488:2;5514:53;5559:7;5550:6;5539:9;5535:22;5514:53;:::i;:::-;5504:63;;5459:118;5110:474;;;;;:::o;5590:180::-;5638:77;5635:1;5628:88;5735:4;5732:1;5725:15;5759:4;5756:1;5749:15;5776:320;5820:6;5857:1;5851:4;5847:12;5837:22;;5904:1;5898:4;5894:12;5925:18;5915:81;;5981:4;5973:6;5969:17;5959:27;;5915:81;6043:2;6035:6;6032:14;6012:18;6009:38;6006:84;;6062:18;;:::i;:::-;6006:84;5827:269;5776:320;;;:::o;6102:227::-;6242:34;6238:1;6230:6;6226:14;6219:58;6311:10;6306:2;6298:6;6294:15;6287:35;6102:227;:::o;6335:366::-;6477:3;6498:67;6562:2;6557:3;6498:67;:::i;:::-;6491:74;;6574:93;6663:3;6574:93;:::i;:::-;6692:2;6687:3;6683:12;6676:19;;6335:366;;;:::o;6707:419::-;6873:4;6911:2;6900:9;6896:18;6888:26;;6960:9;6954:4;6950:20;6946:1;6935:9;6931:17;6924:47;6988:131;7114:4;6988:131;:::i;:::-;6980:139;;6707:419;;;:::o;7132:180::-;7180:77;7177:1;7170:88;7277:4;7274:1;7267:15;7301:4;7298:1;7291:15;7318:194;7358:4;7378:20;7396:1;7378:20;:::i;:::-;7373:25;;7412:20;7430:1;7412:20;:::i;:::-;7407:25;;7456:1;7453;7449:9;7441:17;;7480:1;7474:4;7471:11;7468:37;;;7485:18;;:::i;:::-;7468:37;7318:194;;;;:::o;7518:191::-;7558:3;7577:20;7595:1;7577:20;:::i;:::-;7572:25;;7611:20;7629:1;7611:20;:::i;:::-;7606:25;;7654:1;7651;7647:9;7640:16;;7675:3;7672:1;7669:10;7666:36;;;7682:18;;:::i;:::-;7666:36;7518:191;;;;:::o;7715:224::-;7855:34;7851:1;7843:6;7839:14;7832:58;7924:7;7919:2;7911:6;7907:15;7900:32;7715:224;:::o;7945:366::-;8087:3;8108:67;8172:2;8167:3;8108:67;:::i;:::-;8101:74;;8184:93;8273:3;8184:93;:::i;:::-;8302:2;8297:3;8293:12;8286:19;;7945:366;;;:::o;8317:419::-;8483:4;8521:2;8510:9;8506:18;8498:26;;8570:9;8564:4;8560:20;8556:1;8545:9;8541:17;8534:47;8598:131;8724:4;8598:131;:::i;:::-;8590:139;;8317:419;;;:::o;8742:222::-;8882:34;8878:1;8870:6;8866:14;8859:58;8951:5;8946:2;8938:6;8934:15;8927:30;8742:222;:::o;8970:366::-;9112:3;9133:67;9197:2;9192:3;9133:67;:::i;:::-;9126:74;;9209:93;9298:3;9209:93;:::i;:::-;9327:2;9322:3;9318:12;9311:19;;8970:366;;;:::o;9342:419::-;9508:4;9546:2;9535:9;9531:18;9523:26;;9595:9;9589:4;9585:20;9581:1;9570:9;9566:17;9559:47;9623:131;9749:4;9623:131;:::i;:::-;9615:139;;9342:419;;;:::o;9767:225::-;9907:34;9903:1;9895:6;9891:14;9884:58;9976:8;9971:2;9963:6;9959:15;9952:33;9767:225;:::o;9998:366::-;10140:3;10161:67;10225:2;10220:3;10161:67;:::i;:::-;10154:74;;10237:93;10326:3;10237:93;:::i;:::-;10355:2;10350:3;10346:12;10339:19;;9998:366;;;:::o;10370:419::-;10536:4;10574:2;10563:9;10559:18;10551:26;;10623:9;10617:4;10613:20;10609:1;10598:9;10594:17;10587:47;10651:131;10777:4;10651:131;:::i;:::-;10643:139;;10370:419;;;:::o;10795:223::-;10935:34;10931:1;10923:6;10919:14;10912:58;11004:6;10999:2;10991:6;10987:15;10980:31;10795:223;:::o;11024:366::-;11166:3;11187:67;11251:2;11246:3;11187:67;:::i;:::-;11180:74;;11263:93;11352:3;11263:93;:::i;:::-;11381:2;11376:3;11372:12;11365:19;;11024:366;;;:::o;11396:419::-;11562:4;11600:2;11589:9;11585:18;11577:26;;11649:9;11643:4;11639:20;11635:1;11624:9;11620:17;11613:47;11677:131;11803:4;11677:131;:::i;:::-;11669:139;;11396:419;;;:::o;11821:221::-;11961:34;11957:1;11949:6;11945:14;11938:58;12030:4;12025:2;12017:6;12013:15;12006:29;11821:221;:::o;12048:366::-;12190:3;12211:67;12275:2;12270:3;12211:67;:::i;:::-;12204:74;;12287:93;12376:3;12287:93;:::i;:::-;12405:2;12400:3;12396:12;12389:19;;12048:366;;;:::o;12420:419::-;12586:4;12624:2;12613:9;12609:18;12601:26;;12673:9;12667:4;12663:20;12659:1;12648:9;12644:17;12637:47;12701:131;12827:4;12701:131;:::i;:::-;12693:139;;12420:419;;;:::o;12845:224::-;12985:34;12981:1;12973:6;12969:14;12962:58;13054:7;13049:2;13041:6;13037:15;13030:32;12845:224;:::o;13075:366::-;13217:3;13238:67;13302:2;13297:3;13238:67;:::i;:::-;13231:74;;13314:93;13403:3;13314:93;:::i;:::-;13432:2;13427:3;13423:12;13416:19;;13075:366;;;:::o;13447:419::-;13613:4;13651:2;13640:9;13636:18;13628:26;;13700:9;13694:4;13690:20;13686:1;13675:9;13671:17;13664:47;13728:131;13854:4;13728:131;:::i;:::-;13720:139;;13447:419;;;:::o;13872:410::-;13912:7;13935:20;13953:1;13935:20;:::i;:::-;13930:25;;13969:20;13987:1;13969:20;:::i;:::-;13964:25;;14024:1;14021;14017:9;14046:30;14064:11;14046:30;:::i;:::-;14035:41;;14225:1;14216:7;14212:15;14209:1;14206:22;14186:1;14179:9;14159:83;14136:139;;14255:18;;:::i;:::-;14136:139;13920:362;13872:410;;;;:::o;14288:180::-;14336:77;14333:1;14326:88;14433:4;14430:1;14423:15;14457:4;14454:1;14447:15;14474:185;14514:1;14531:20;14549:1;14531:20;:::i;:::-;14526:25;;14565:20;14583:1;14565:20;:::i;:::-;14560:25;;14604:1;14594:35;;14609:18;;:::i;:::-;14594:35;14651:1;14648;14644:9;14639:14;;14474:185;;;;:::o

Swarm Source

ipfs://a4a6bdcb38560448fcf4fa4e10659259c59a04e91f9b0366bacdd564d3bb0bb6

Block Transaction Gas Used Reward
view all blocks produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.