Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 34 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Create Token | 15826058 | 1220 days ago | IN | 0 ETH | 0.05717383 | ||||
| Create Token | 14558334 | 1418 days ago | IN | 0 ETH | 0.07616952 | ||||
| Create Token | 14558334 | 1418 days ago | IN | 0 ETH | 0.07616862 | ||||
| Create Token | 13631894 | 1562 days ago | IN | 0 ETH | 0.28025449 | ||||
| Create Token | 12861782 | 1682 days ago | IN | 0 ETH | 0.05115512 | ||||
| Create Token | 12854092 | 1683 days ago | IN | 0 ETH | 0.04513687 | ||||
| Create Token | 12854049 | 1683 days ago | IN | 0 ETH | 0.04513759 | ||||
| Create Token | 12853894 | 1683 days ago | IN | 0 ETH | 0.04513759 | ||||
| Create Token | 12853619 | 1683 days ago | IN | 0 ETH | 0.03911924 | ||||
| Create Token | 12853522 | 1683 days ago | IN | 0 ETH | 0.03911924 | ||||
| Create Token | 12853518 | 1683 days ago | IN | 0 ETH | 0.03911924 | ||||
| Create Token | 12853512 | 1683 days ago | IN | 0 ETH | 0.03911924 | ||||
| Create Token | 12853505 | 1683 days ago | IN | 0 ETH | 0.04212842 | ||||
| Create Token | 12853493 | 1683 days ago | IN | 0 ETH | 0.04513687 | ||||
| Create Token | 12853338 | 1683 days ago | IN | 0 ETH | 0.04513687 | ||||
| Create Token | 12852400 | 1684 days ago | IN | 0 ETH | 0.03761406 | ||||
| Create Token | 12848602 | 1684 days ago | IN | 0 ETH | 0.03761406 | ||||
| Create Token | 12847047 | 1684 days ago | IN | 0 ETH | 0.03761406 | ||||
| Create Token | 12847009 | 1684 days ago | IN | 0 ETH | 0.03761406 | ||||
| Create Token | 12770329 | 1696 days ago | IN | 0 ETH | 0.02748684 | ||||
| Create Token | 12770329 | 1696 days ago | IN | 0 ETH | 0.02748684 | ||||
| Create Token | 12770327 | 1696 days ago | IN | 0 ETH | 0.02748684 | ||||
| Create Token | 12770327 | 1696 days ago | IN | 0 ETH | 0.02748684 | ||||
| Create Token | 12770326 | 1696 days ago | IN | 0 ETH | 0.02748684 | ||||
| Create Token | 12769858 | 1697 days ago | IN | 0 ETH | 0.02748684 |
Latest 25 internal transactions (View All)
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xf823A5C8...eF3bA7B13 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
TokenFactory
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-02-01
*/
// File: openzeppelin-solidity/contracts/ownership/Ownable.sol
pragma solidity ^0.5.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.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be aplied to your functions to restrict their use to
* the owner.
*/
contract Ownable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () internal {
_owner = msg.sender;
emit OwnershipTransferred(address(0), _owner);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(isOwner(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Returns true if the caller is the current owner.
*/
function isOwner() public view returns (bool) {
return msg.sender == _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 onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public onlyOwner {
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
*/
function _transferOwnership(address newOwner) internal {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// File: contracts/access/Authorizable.sol
pragma solidity ^0.5.8;
contract Authorizable is Ownable {
mapping(address => bool) private authorized;
modifier onlyAuthorized() {
require(authorized[msg.sender], "Authorizable: Address is not authorized");
_;
}
event AddressEnabled(address enabledAddress);
event AddressDisabled(address disabledAddress);
function enableAddress(address _address) public onlyOwner {
authorized[_address] = true;
emit AddressEnabled(_address);
}
function disableAddress(address _address) public onlyOwner {
authorized[_address] = false;
emit AddressDisabled(_address);
}
function isAuthorized(address _address) public view returns (bool) {
return authorized[_address];
}
}
// File: contracts/access/TokenAccessList.sol
pragma solidity ^0.5.8;
contract TokenAccessList is Ownable {
string public identifier;
mapping(address => bool) private accessList;
event WalletEnabled(address indexed wallet);
event WalletDisabled(address indexed wallet);
constructor(string memory _identifier) public {
identifier = _identifier;
}
function enableWallet(address _wallet)
public
onlyOwner
{
require(_wallet != address(0), "Invalid wallet");
accessList[_wallet] = true;
emit WalletEnabled(_wallet);
}
function disableWallet(address _wallet)
public
onlyOwner
{
accessList[_wallet] = false;
emit WalletDisabled(_wallet);
}
function enableWalletList(address[] calldata _walletList)
external
onlyOwner {
for(uint i = 0; i < _walletList.length; i++) {
enableWallet(_walletList[i]);
}
}
function disableWalletList(address[] calldata _walletList)
external
onlyOwner {
for(uint i = 0; i < _walletList.length; i++) {
disableWallet(_walletList[i]);
}
}
function checkEnabled(address _wallet)
public
view
returns (bool) {
return _wallet == address(0) || accessList[_wallet];
}
function checkEnabledList(address _w1, address _w2, address _w3)
external
view
returns (bool) {
return checkEnabled(_w1)
&& checkEnabled(_w2)
&& checkEnabled(_w3);
}
}
// File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol
pragma solidity ^0.5.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP. Does not include
* the optional functions; to access them see `ERC20Detailed`.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a `Transfer` event.
*/
function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* > 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 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a `Transfer` event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @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);
}
// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Detailed.sol
pragma solidity ^0.5.0;
/**
* @dev Optional functions from the ERC20 standard.
*/
contract ERC20Detailed is IERC20 {
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
* these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name, string memory symbol, uint8 decimals) public {
_name = name;
_symbol = symbol;
_decimals = decimals;
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei.
*
* > Note that this information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* `IERC20.balanceOf` and `IERC20.transfer`.
*/
function decimals() public view returns (uint8) {
return _decimals;
}
}
// File: openzeppelin-solidity/contracts/math/SafeMath.sol
pragma solidity ^0.5.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @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) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @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) {
require(b <= a, "SafeMath: subtraction overflow");
uint256 c = a - b;
return c;
}
/**
* @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) {
// 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-solidity/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, "SafeMath: division by zero");
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts 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) {
require(b != 0, "SafeMath: modulo by zero");
return a % b;
}
}
// File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol
pragma solidity ^0.5.0;
/**
* @dev Implementation of the `IERC20` interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using `_mint`.
* For a generic mechanism see `ERC20Mintable`.
*
* *For a detailed writeup see our guide [How to implement supply
* mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an `Approval` event is emitted on calls to `transferFrom`.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard `decreaseAllowance` and `increaseAllowance`
* functions have been added to mitigate the well-known issues around setting
* allowances. See `IERC20.approve`.
*/
contract ERC20 is IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
/**
* @dev See `IERC20.totalSupply`.
*/
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
/**
* @dev See `IERC20.balanceOf`.
*/
function balanceOf(address account) public view returns (uint256) {
return _balances[account];
}
/**
* @dev See `IERC20.transfer`.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public returns (bool) {
_transfer(msg.sender, recipient, amount);
return true;
}
/**
* @dev See `IERC20.allowance`.
*/
function allowance(address owner, address spender) public view returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See `IERC20.approve`.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public returns (bool) {
_approve(msg.sender, spender, value);
return true;
}
/**
* @dev See `IERC20.transferFrom`.
*
* Emits an `Approval` event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of `ERC20`;
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `value`.
* - the caller must have allowance for `sender`'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to `approve` that can be used as a mitigation for
* problems described in `IERC20.approve`.
*
* Emits an `Approval` event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to `approve` that can be used as a mitigation for
* problems described in `IERC20.approve`.
*
* Emits an `Approval` event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to `transfer`, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a `Transfer` event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
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");
_balances[sender] = _balances[sender].sub(amount);
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a `Transfer` event with `from` set to the zero address.
*
* Requirements
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destoys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a `Transfer` event with `to` set to the zero address.
*
* Requirements
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 value) internal {
require(account != address(0), "ERC20: burn from the zero address");
_totalSupply = _totalSupply.sub(value);
_balances[account] = _balances[account].sub(value);
emit Transfer(account, address(0), value);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an `Approval` event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 value) internal {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = value;
emit Approval(owner, spender, value);
}
/**
* @dev Destoys `amount` tokens from `account`.`amount` is then deducted
* from the caller's allowance.
*
* See `_burn` and `_approve`.
*/
function _burnFrom(address account, uint256 amount) internal {
_burn(account, amount);
_approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
}
}
// File: openzeppelin-solidity/contracts/access/Roles.sol
pragma solidity ^0.5.0;
/**
* @title Roles
* @dev Library for managing addresses assigned to a Role.
*/
library Roles {
struct Role {
mapping (address => bool) bearer;
}
/**
* @dev Give an account access to this role.
*/
function add(Role storage role, address account) internal {
require(!has(role, account), "Roles: account already has role");
role.bearer[account] = true;
}
/**
* @dev Remove an account's access to this role.
*/
function remove(Role storage role, address account) internal {
require(has(role, account), "Roles: account does not have role");
role.bearer[account] = false;
}
/**
* @dev Check if an account has this role.
* @return bool
*/
function has(Role storage role, address account) internal view returns (bool) {
require(account != address(0), "Roles: account is the zero address");
return role.bearer[account];
}
}
// File: contracts/access/roles/BurnerRole.sol
pragma solidity ^0.5.8;
contract BurnerRole {
using Roles for Roles.Role;
event BurnerAdded(address indexed account);
event BurnerRemoved(address indexed account);
Roles.Role private _burners;
constructor () internal {
_addBurner(msg.sender);
}
modifier onlyBurner() {
require(isBurner(msg.sender), "BurnerRole: caller does not have the Burner role");
_;
}
function isBurner(address account) public view returns (bool) {
return _burners.has(account);
}
function addBurner(address account) public onlyBurner {
_addBurner(account);
}
function renounceBurner() public onlyBurner {
_removeBurner(msg.sender);
}
function _addBurner(address account) internal {
_burners.add(account);
emit BurnerAdded(account);
}
function _removeBurner(address account) internal {
_burners.remove(account);
emit BurnerRemoved(account);
}
}
// File: contracts/tokens/ERC20BurnableAdmin.sol
pragma solidity ^0.5.8;
/**
* @dev Extension of `ERC20` allows a centralized owner to burn users' tokens
*
* At construction time, the deployer of the contract is the only burner.
*/
contract ERC20BurnableAdmin is ERC20, BurnerRole {
event ForcedBurn(address requester, address wallet, uint256 value);
/**
* @dev new function to burn tokens from a centralized owner
* @param _who The address which will be burned.
* @param _value The amount of tokens to burn.
* @return A boolean that indicates if the operation was successful.
*/
function forcedBurn(address _who, uint256 _value)
public
onlyBurner
returns (bool) {
_burn(_who, _value);
emit ForcedBurn(msg.sender, _who, _value);
return true;
}
}
// File: openzeppelin-solidity/contracts/access/roles/PauserRole.sol
pragma solidity ^0.5.0;
contract PauserRole {
using Roles for Roles.Role;
event PauserAdded(address indexed account);
event PauserRemoved(address indexed account);
Roles.Role private _pausers;
constructor () internal {
_addPauser(msg.sender);
}
modifier onlyPauser() {
require(isPauser(msg.sender), "PauserRole: caller does not have the Pauser role");
_;
}
function isPauser(address account) public view returns (bool) {
return _pausers.has(account);
}
function addPauser(address account) public onlyPauser {
_addPauser(account);
}
function renouncePauser() public {
_removePauser(msg.sender);
}
function _addPauser(address account) internal {
_pausers.add(account);
emit PauserAdded(account);
}
function _removePauser(address account) internal {
_pausers.remove(account);
emit PauserRemoved(account);
}
}
// File: openzeppelin-solidity/contracts/lifecycle/Pausable.sol
pragma solidity ^0.5.0;
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
contract Pausable is PauserRole {
/**
* @dev Emitted when the pause is triggered by a pauser (`account`).
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by a pauser (`account`).
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state. Assigns the Pauser role
* to the deployer.
*/
constructor () internal {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*/
modifier whenNotPaused() {
require(!_paused, "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*/
modifier whenPaused() {
require(_paused, "Pausable: not paused");
_;
}
/**
* @dev Called by a pauser to pause, triggers stopped state.
*/
function pause() public onlyPauser whenNotPaused {
_paused = true;
emit Paused(msg.sender);
}
/**
* @dev Called by a pauser to unpause, returns to normal state.
*/
function unpause() public onlyPauser whenPaused {
_paused = false;
emit Unpaused(msg.sender);
}
}
// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Pausable.sol
pragma solidity ^0.5.0;
/**
* @title Pausable token
* @dev ERC20 modified with pausable transfers.
*/
contract ERC20Pausable is ERC20, Pausable {
function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
return super.transfer(to, value);
}
function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
return super.transferFrom(from, to, value);
}
function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
return super.approve(spender, value);
}
function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool) {
return super.increaseAllowance(spender, addedValue);
}
function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool) {
return super.decreaseAllowance(spender, subtractedValue);
}
}
// File: contracts/access/roles/CreatorRole.sol
pragma solidity ^0.5.8;
contract CreatorRole {
using Roles for Roles.Role;
event CreatorAdded(address indexed account);
event CreatorRemoved(address indexed account);
Roles.Role private _creators;
constructor () internal {
_addCreator(msg.sender);
}
modifier onlyCreator() {
require(isCreator(msg.sender), "CreatorRole: caller does not have the Creator role");
_;
}
function isCreator(address account) public view returns (bool) {
return _creators.has(account);
}
function _addCreator(address account) internal {
_creators.add(account);
emit CreatorAdded(account);
}
function _removeCreator(address account) internal {
_creators.remove(account);
emit CreatorRemoved(account);
}
}
// File: openzeppelin-solidity/contracts/access/roles/MinterRole.sol
pragma solidity ^0.5.0;
contract MinterRole {
using Roles for Roles.Role;
event MinterAdded(address indexed account);
event MinterRemoved(address indexed account);
Roles.Role private _minters;
constructor () internal {
_addMinter(msg.sender);
}
modifier onlyMinter() {
require(isMinter(msg.sender), "MinterRole: caller does not have the Minter role");
_;
}
function isMinter(address account) public view returns (bool) {
return _minters.has(account);
}
function addMinter(address account) public onlyMinter {
_addMinter(account);
}
function renounceMinter() public {
_removeMinter(msg.sender);
}
function _addMinter(address account) internal {
_minters.add(account);
emit MinterAdded(account);
}
function _removeMinter(address account) internal {
_minters.remove(account);
emit MinterRemoved(account);
}
}
// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Mintable.sol
pragma solidity ^0.5.0;
/**
* @dev Extension of `ERC20` that adds a set of accounts with the `MinterRole`,
* which have permission to mint (create) new tokens as they see fit.
*
* At construction, the deployer of the contract is the only minter.
*/
contract ERC20Mintable is ERC20, MinterRole {
/**
* @dev See `ERC20._mint`.
*
* Requirements:
*
* - the caller must have the `MinterRole`.
*/
function mint(address account, uint256 amount) public onlyMinter returns (bool) {
_mint(account, amount);
return true;
}
}
// File: contracts/tokens/ERC20CapEnabler.sol
pragma solidity ^0.5.8;
/**
* @dev Modification of OpenZeppelin's ERC20Capped. Implements a mechanism
* to enable and disable cap control, as well as cap modification.
*/
contract ERC20CapEnabler is ERC20Mintable, CreatorRole {
uint256 public cap;
bool public capEnabled;
event CapEnabled(address sender);
event CapDisabled(address sender);
event CapSet(address sender, uint256 amount);
/**
* @dev Enable cap control on minting.
*/
function enableCap()
external
onlyCreator {
capEnabled = true;
emit CapEnabled(msg.sender);
}
/**
* @dev Disable cap control on minting and set cap back to 0.
*/
function disableCap()
external
onlyCreator {
capEnabled = false;
// set cap to 0
cap = 0;
emit CapDisabled(msg.sender);
}
/**
* @dev Set a new cap.
*/
function setCap(uint256 _newCap)
external
onlyCreator {
cap = _newCap;
emit CapSet(msg.sender, _newCap);
}
/**
* @dev Overrides mint by checking whether cap control is enabled and
* reverting if the token addition to supply will exceed the cap.
*/
function mint(address account, uint256 value)
public
onlyMinter
returns (bool) {
if (capEnabled) require(totalSupply().add(value) <= cap, "ERC20CapEnabler: cap exceeded");
return super.mint(account, value);
}
}
// File: contracts/access/roles/OperatorRole.sol
pragma solidity ^0.5.8;
contract OperatorRole {
using Roles for Roles.Role;
event OperatorAdded(address indexed account);
event OperatorRemoved(address indexed account);
Roles.Role private _operators;
constructor () internal {
_addOperator(msg.sender);
}
modifier onlyOperator() {
require(isOperator(msg.sender), "OperatorRole: caller does not have the Operator role");
_;
}
function isOperator(address account) public view returns (bool) {
return _operators.has(account);
}
function addOperator(address account) public onlyOperator {
_addOperator(account);
}
function renounceOperator() public onlyOperator {
_removeOperator(msg.sender);
}
function _addOperator(address account) internal {
_operators.add(account);
emit OperatorAdded(account);
}
function _removeOperator(address account) internal {
_operators.remove(account);
emit OperatorRemoved(account);
}
}
// File: contracts/tokens/ERC20Operator.sol
pragma solidity ^0.5.8;
/**
* @dev Extension of `ERC20` allows a centralized owner to burn users' tokens
*
* At construction time, the deployer of the contract is the only burner.
*/
contract ERC20Operator is ERC20, OperatorRole {
event ForcedTransfer(address requester, address from, address to, uint256 value);
/**
* @dev new function to burn tokens from a centralized owner
* @param _from address The address which the operator wants to send tokens from
* @param _to address The address which the operator wants to transfer to
* @param _value uint256 the amount of tokens to be transferred
* @return A boolean that indicates if the operation was successful.
*/
function forcedTransfer(address _from, address _to, uint256 _value)
public
onlyOperator
returns (bool) {
_transfer(_from, _to, _value);
emit ForcedTransfer(msg.sender, _from, _to, _value);
return true;
}
}
// File: contracts/tokens/ERC20AccessList.sol
pragma solidity ^0.5.8;
/**
* ERC20 implementation that optionally allows the setup of a access list,
* which may or may not be required by regulators. If a access list is
* configured, then the contract starts validating parties.
* Only the token creator, represented by the CreatorRole, is allowed
* to add and remove the access list
*/
contract ERC20AccessList is ERC20Pausable, ERC20CapEnabler, ERC20Operator {
TokenAccessList public accessList;
bool public checkingAccessList;
address constant private EMPTY_ADDRESS = address(0);
/**
* Admin events
*/
event AccessListSet(address accessList);
event AccessListUnset();
modifier hasAccess(address _w1, address _w2, address _w3) {
if (checkingAccessList) {
require(accessList.checkEnabledList(_w1, _w2, _w3), "AccessList: address not authorized");
}
_;
}
/**
* Admin functions
*/
/**
* @dev Sets up the centralized accessList contract
* @param _accessList the address of accessList contract.
* @return A boolean that indicates if the operation was successful.
*/
function setupAccessList(address _accessList)
public
onlyCreator {
require(_accessList != address(0), "Invalid access list address");
accessList = TokenAccessList(_accessList);
checkingAccessList = true;
emit AccessListSet(_accessList);
}
/**
* @dev Removes the accessList
* @return A boolean that indicates if the operation was successful.
*/
function removeAccessList()
public
onlyCreator {
checkingAccessList = false;
accessList = TokenAccessList(0x0);
emit AccessListUnset();
}
/**
* @dev Overrides MintableToken mint() adding the accessList validation
* @param _to The address that will receive the minted tokens.
* @param _amount The amount of tokens to mint.
* @return A boolean that indicates if the operation was successful.
*/
function mint(address _to, uint256 _amount)
public
onlyMinter
hasAccess(_to, EMPTY_ADDRESS, EMPTY_ADDRESS)
returns (bool) {
return super.mint(_to, _amount);
}
/**
* User functions
*/
/**
* @dev Overrides BasicToken transfer() adding the accessList validation
* @param _to The address to transfer to.
* @param _value The amount to be transferred.
* @return A boolean that indicates if the operation was successful.
*/
function transfer(address _to, uint256 _value)
public
whenNotPaused
hasAccess(msg.sender, _to, EMPTY_ADDRESS)
returns (bool) {
return super.transfer(_to, _value);
}
/**
* @dev Overrides BasicToken transfer() adding the accessList validation
* @param _to The address to transfer from.
* @param _to The address to transfer to.
* @param _value The amount to be transferred.
* @return A boolean that indicates if the operation was successful.
*/
function forcedTransfer(address _from, address _to, uint256 _value)
public
hasAccess(_from, _to, EMPTY_ADDRESS)
returns (bool) {
return super.forcedTransfer(_from, _to, _value);
}
/**
* @dev Overrides StandardToken transferFrom() adding the accessList validation
* @param _from address The address which you want to send tokens from
* @param _to address The address which you want to transfer to
* @param _value uint256 the amount of tokens to be transferred
*/
function transferFrom(address _from, address _to, uint256 _value)
public
whenNotPaused
hasAccess(msg.sender, _from, _to)
returns (bool) {
return super.transferFrom(_from, _to, _value);
}
/**
* @dev Overrides StandardToken approve() adding the accessList validation
* @param _spender The address which will spend the funds.
* @param _value The amount of tokens to be spent.
* @return A boolean that indicates if the operation was successful.
*/
function approve(address _spender, uint256 _value)
public
whenNotPaused
hasAccess(msg.sender, _spender, EMPTY_ADDRESS)
returns (bool) {
return super.approve(_spender, _value);
}
/**
* @dev Overrides StandardToken increaseApproval() adding the accessList validation
* @param _spender The address which will spend the funds.
* @param _addedValue The amount of tokens to increase the allowance by.
* @return A boolean that indicates if the operation was successful.
*/
function increaseAllowance(address _spender, uint _addedValue)
public
whenNotPaused
hasAccess(msg.sender, _spender, EMPTY_ADDRESS)
returns (bool) {
return super.increaseAllowance(_spender, _addedValue);
}
/**
* @dev Overrides StandardToken decreaseApproval() adding the accessList validation
* @param _spender The address which will spend the funds.
* @param _subtractedValue The amount of tokens to decrease the allowance by.
* @return A boolean that indicates if the operation was successful.
*/
function decreaseAllowance(address _spender, uint _subtractedValue)
public
whenNotPaused
hasAccess(msg.sender, _spender, EMPTY_ADDRESS)
returns (bool) {
return super.decreaseAllowance(_spender, _subtractedValue);
}
}
// File: contracts/tokens/ControlledToken.sol
pragma solidity ^0.5.8;
/**
* This implementation adds a control layer over the ERC20. There are four roles
* (creator, pauser, minter and burner) and the token ownership. Token creator
* has powers to add and remove pausers, minters and burners. Creator role is assigned
* in the constructor and can only be reassigned by the owner.
* The owner has the power to claim roles, as an emergency stop mechanism.
*/
contract ControlledToken is Ownable, ERC20Detailed, ERC20BurnableAdmin, ERC20AccessList {
string public info;
constructor(string memory _name, string memory _symbol, uint8 _decimals, string memory _info, address _creator)
public
ERC20Detailed(_name, _symbol, _decimals) {
info = _info;
// adds all roles to creator
_addCreator(_creator);
_addPauser(_creator);
_addMinter(_creator);
_addBurner(_creator);
_addOperator(_creator);
// remove all roles from token factory
_removeCreator(msg.sender);
_removePauser(msg.sender);
_removeMinter(msg.sender);
_removeBurner(msg.sender);
_removeOperator(msg.sender);
}
/**
* Platform owner functions
*/
/**
* @dev claims creator role from an address.
* @param _address The address will be removed.
*/
function claimCreator(address _address)
public
onlyOwner {
_removeCreator(_address);
_addCreator(msg.sender);
}
/**
* @dev claims operator role from an address.
* @param _address The address will be removed.
*/
function claimOperator(address _address)
public
onlyOwner {
_removeOperator(_address);
_addOperator(msg.sender);
}
/**
* @dev claims minter role from an address.
* @param _address The address will be removed.
*/
function claimMinter(address _address)
public
onlyOwner {
_removeMinter(_address);
_addMinter(msg.sender);
}
/**
* @dev claims burner role from an address.
* @param _address The address will be removed.
*/
function claimBurner(address _address)
public
onlyOwner {
_removeBurner(_address);
_addBurner(msg.sender);
}
/**
* @dev claims pauser role from an address.
* @param _address The address will be removed.
*/
function claimPauser(address _address)
public
onlyOwner {
_removePauser(_address);
_addPauser(msg.sender);
}
/**
* @dev adds new creator.
* @param _address The address will be removed.
*/
function addCreator(address _address)
public
onlyOwner {
_addCreator(_address);
}
/**
* @dev renounces to creator role
*/
function renounceCreator()
public
onlyOwner {
_removeCreator(msg.sender);
}
/**
* Creator functions
*/
/**
* @dev adds minter role to and address.
* @param _address The address will be added.
* Needed in case the last minter renounces the role
*/
function adminAddMinter(address _address)
public
onlyCreator {
_addMinter(_address);
}
/**
* @dev removes minter role from an address.
* @param _address The address will be removed.
*/
function removeMinter(address _address)
public
onlyCreator {
_removeMinter(_address);
}
/**
* @dev adds pauser role to and address.
* @param _address The address will be added.
* Needed in case the last pauser renounces the role
*/
function adminAddPauser(address _address)
public
onlyCreator {
_addPauser(_address);
}
/**
* @dev removes pauser role from an address.
* @param _address The address will be removed.
*/
function removePauser(address _address)
public
onlyCreator {
_removePauser(_address);
}
/**
* @dev adds pauser role to and address.
* @param _address The address will be added.
* Needed in case the last pauser renounces the role
*/
function adminAddOperator(address _address)
public
onlyCreator {
_addOperator(_address);
}
/**
* @dev removes operator role from an address.
* @param _address The address will be removed.
*/
function removeOperator(address _address)
public
onlyCreator {
_removeOperator(_address);
}
/**
* @dev adds burner role to and address.
* @param _address The address will be added.
* Needed in case the last burner renounces the role
*/
function adminAddBurner(address _address)
public
onlyCreator {
_addBurner(_address);
}
/**
* @dev removes burner role fom an address.
* @param _address The address will be removed.
*/
function removeBurner(address _address)
public
onlyCreator {
_removeBurner(_address);
}
}
// File: contracts/TokenFactory.sol
pragma solidity ^0.5.8;
contract TokenFactory is Authorizable {
address[] private tIndex; // token index
address[] private alIndex; // access list index
event TokenCreated(string name, string symbol, uint8 decimals, string info, address indexed token, uint256 blockNumber, address indexed creator);
event AccessListCreated(address indexed accessList, string identifier, uint256 blockNumber, address indexed creator);
function createToken(string calldata _name, string calldata _symbol, uint8 _decimals, string calldata _info)
external
onlyAuthorized {
// creates a token
address t = address(new ControlledToken(_name, _symbol, _decimals, _info, msg.sender));
// platform owner holds some control over the tokens
Ownable(t).transferOwnership(owner());
// add token address to index
tIndex.push(t);
// log
emit TokenCreated(_name, _symbol, _decimals, _info, t, block.number, msg.sender);
}
function addToken(string calldata _name, string calldata _symbol, uint8 _decimals, string calldata _info, uint256 _blockNumber, address _token, address _owner)
external
onlyOwner {
require(isAuthorized(_owner), "Token owner is not authorized");
tIndex.push(_token);
emit TokenCreated(_name, _symbol, _decimals, _info, _token, _blockNumber, _owner);
}
function createAccessList(string calldata _identifier)
external
onlyAuthorized {
// creates an access list
address al = address(new TokenAccessList(_identifier));
// transfers ownership to sender
Ownable(al).transferOwnership(msg.sender);
// add access list address to index
alIndex.push(al);
// log
emit AccessListCreated(al, _identifier, block.number, msg.sender);
}
function addAccessList(address _accessList, string calldata _identifier, uint256 _blockNumber, address _owner)
external
onlyOwner {
require(isAuthorized(_owner), "AccessList owner is not authorized");
alIndex.push(_accessList);
emit AccessListCreated(_accessList, _identifier, _blockNumber, _owner);
}
function tokenIndex()
external
view
returns (address[] memory) {
return tIndex;
}
function accessListIndex()
external
view
returns (address[] memory) {
return alIndex;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"accessList","type":"address"},{"indexed":false,"internalType":"string","name":"identifier","type":"string"},{"indexed":false,"internalType":"uint256","name":"blockNumber","type":"uint256"},{"indexed":true,"internalType":"address","name":"creator","type":"address"}],"name":"AccessListCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"disabledAddress","type":"address"}],"name":"AddressDisabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"enabledAddress","type":"address"}],"name":"AddressEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"string","name":"symbol","type":"string"},{"indexed":false,"internalType":"uint8","name":"decimals","type":"uint8"},{"indexed":false,"internalType":"string","name":"info","type":"string"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"blockNumber","type":"uint256"},{"indexed":true,"internalType":"address","name":"creator","type":"address"}],"name":"TokenCreated","type":"event"},{"constant":true,"inputs":[],"name":"accessListIndex","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_accessList","type":"address"},{"internalType":"string","name":"_identifier","type":"string"},{"internalType":"uint256","name":"_blockNumber","type":"uint256"},{"internalType":"address","name":"_owner","type":"address"}],"name":"addAccessList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"},{"internalType":"string","name":"_info","type":"string"},{"internalType":"uint256","name":"_blockNumber","type":"uint256"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_owner","type":"address"}],"name":"addToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_identifier","type":"string"}],"name":"createAccessList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"},{"internalType":"string","name":"_info","type":"string"}],"name":"createToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"disableAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"enableAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isAuthorized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokenIndex","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
0x60806040819052600080546001600160a01b03191633178082556001600160a01b0316917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3615953806100576000396000f3fe60806040523480156200001157600080fd5b5060043610620000e25760003560e01c80638f32d59b1162000099578063d55f9273116200006f578063d55f9273146200040d578063f0ef50d81462000417578063f2fde38b146200054f578063fe9fbb80146200057857620000e2565b80638f32d59b1462000352578063994bb0b314620003705780639eefdd8714620003e457620000e2565b80632482ee2714620000e75780633f9ba3f4146200020a5780635036258b1462000266578063715018a6146200028f5780637fa739d214620002995780638da5cb5b146200032c575b600080fd5b6200020860048036036080811015620000ff57600080fd5b810190602081018135600160201b8111156200011a57600080fd5b8201836020820111156200012d57600080fd5b803590602001918460018302840111600160201b831117156200014f57600080fd5b919390929091602081019035600160201b8111156200016d57600080fd5b8201836020820111156200018057600080fd5b803590602001918460018302840111600160201b83111715620001a257600080fd5b9193909260ff83351692604081019060200135600160201b811115620001c757600080fd5b820183602082011115620001da57600080fd5b803590602001918460018302840111600160201b83111715620001fc57600080fd5b509092509050620005a1565b005b6200021462000870565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156200025257818101518382015260200162000238565b505050509050019250505060405180910390f35b62000208600480360360208110156200027e57600080fd5b50356001600160a01b0316620008d4565b6200020862000977565b6200020860048036036080811015620002b157600080fd5b6001600160a01b038235169190810190604081016020820135600160201b811115620002dc57600080fd5b820183602082011115620002ef57600080fd5b803590602001918460018302840111600160201b831117156200031157600080fd5b9193509150803590602001356001600160a01b031662000a0c565b6200033662000b62565b604080516001600160a01b039092168252519081900360200190f35b6200035c62000b71565b604080519115158252519081900360200190f35b62000208600480360360208110156200038857600080fd5b810190602081018135600160201b811115620003a357600080fd5b820183602082011115620003b657600080fd5b803590602001918460018302840111600160201b83111715620003d857600080fd5b50909250905062000b82565b6200020860048036036020811015620003fc57600080fd5b50356001600160a01b031662000d55565b6200021462000dfc565b62000208600480360360e08110156200042f57600080fd5b810190602081018135600160201b8111156200044a57600080fd5b8201836020820111156200045d57600080fd5b803590602001918460018302840111600160201b831117156200047f57600080fd5b919390929091602081019035600160201b8111156200049d57600080fd5b820183602082011115620004b057600080fd5b803590602001918460018302840111600160201b83111715620004d257600080fd5b9193909260ff83351692604081019060200135600160201b811115620004f757600080fd5b8201836020820111156200050a57600080fd5b803590602001918460018302840111600160201b831117156200052c57600080fd5b91935091508035906001600160a01b036020820135811691604001351662000e5e565b62000208600480360360208110156200056757600080fd5b50356001600160a01b031662001039565b6200035c600480360360208110156200059057600080fd5b50356001600160a01b031662001092565b3360009081526001602052604090205460ff16620005f15760405162461bcd60e51b8152600401808060200182810382526027815260200180620058f86027913960400191505060405180910390fd5b60008787878787878733604051620006099062001152565b60ff851660408201526001600160a01b038216608082015260a0808252810188905280602081016060820160c083018c8c80828437600083820152601f01601f191690910185810384528a815260200190508a8a80828437600083820152601f01601f1916909101858103835287815260200190508787808284376000838201819052604051601f909201601f19169093018190039e509c50909a5050505050505050505050f080158015620006c3573d6000803e3d6000fd5b509050806001600160a01b031663f2fde38b620006df62000b62565b6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050600060405180830381600087803b1580156200072857600080fd5b505af11580156200073d573d6000803e3d6000fd5b5050600280546001810182556000919091527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040805160ff891691810191909152436080820181905260a080835282018c90523394509192507f8eb60c6610753cb4bf917ac1461ff4623419391b69f4bfe49031a860c30e9ceb918c918c918c918c918c918c918c9180602081016060820160c083018c8c80828437600083820152601f01601f191690910185810384528a815260200190508a8a80828437600083820152601f01601f191690910185810383528781526020019050878780828437600083820152604051601f909101601f19169092018290039d50909b505050505050505050505050a35050505050505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620008ca57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620008ab575b5050505050905090565b620008de62000b71565b6200091f576040805162461bcd60e51b81526020600482018190526024820152600080516020620058d8833981519152604482015290519081900360640190fd5b6001600160a01b038116600081815260016020908152604091829020805460ff19169055815192835290517fe1a480415c61b058b3701fbb135fccaebe891ff64b16e7c5d576c45ae34cff019281900390910190a150565b6200098162000b71565b620009c2576040805162461bcd60e51b81526020600482018190526024820152600080516020620058d8833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b62000a1662000b71565b62000a57576040805162461bcd60e51b81526020600482018190526024820152600080516020620058d8833981519152604482015290519081900360640190fd5b62000a628162001092565b62000a9f5760405162461bcd60e51b8152600401808060200182810382526022815260200180620058b66022913960400191505060405180910390fd5b600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b038781169182179092556040805160208101869052818152908101869052918316917f675147d8ada3ead2a802c551b68fdf7c946ccf4ce5524eb05e0ae0b47eef8c4b908790879087908060608101858580828437600083820152604051601f909101601f1916909201829003965090945050505050a35050505050565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b3360009081526001602052604090205460ff1662000bd25760405162461bcd60e51b8152600401808060200182810382526027815260200180620058f86027913960400191505060405180910390fd5b6000828260405162000be49062001160565b6020808252810182905280604081018484808284376000838201819052604051601f909201601f1916909301819003965094509092505050f08015801562000c30573d6000803e3d6000fd5b506040805163f2fde38b60e01b815233600482015290519192506001600160a01b0383169163f2fde38b9160248082019260009290919082900301818387803b15801562000c7d57600080fd5b505af115801562000c92573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0385169081179091556040805143602082018190528282529181018790523394509192507f675147d8ada3ead2a802c551b68fdf7c946ccf4ce5524eb05e0ae0b47eef8c4b91879187918060608101858580828437600083820152604051601f909101601f1916909201829003965090945050505050a3505050565b62000d5f62000b71565b62000da0576040805162461bcd60e51b81526020600482018190526024820152600080516020620058d8833981519152604482015290519081900360640190fd5b6001600160a01b038116600081815260016020818152604092839020805460ff1916909217909155815192835290517f869aa55c6ddc1d74ef2c7b3a72ad2337d1a47b8cfc62409107f501c879050e719281900390910190a150565b60606002805480602002602001604051908101604052809291908181526020018280548015620008ca576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311620008ab575050505050905090565b62000e6862000b71565b62000ea9576040805162461bcd60e51b81526020600482018190526024820152600080516020620058d8833981519152604482015290519081900360640190fd5b62000eb48162001092565b62000f06576040805162461bcd60e51b815260206004820152601d60248201527f546f6b656e206f776e6572206973206e6f7420617574686f72697a6564000000604482015290519081900360640190fd5b600280546001810182556000919091527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b038481169182179092556040805160ff8a16918101919091526080810186905260a080825281018c9052918316917f8eb60c6610753cb4bf917ac1461ff4623419391b69f4bfe49031a860c30e9ceb908d908d908d908d908d908d908d908d9080602081016060820160c083018c8c80828437600083820152601f01601f191690910185810384528a815260200190508a8a80828437600083820152601f01601f191690910185810383528781526020019050878780828437600083820152604051601f909101601f19169092018290039d50909b505050505050505050505050a350505050505050505050565b6200104362000b71565b62001084576040805162461bcd60e51b81526020600482018190526024820152600080516020620058d8833981519152604482015290519081900360640190fd5b6200108f81620010b0565b50565b6001600160a01b031660009081526001602052604090205460ff1690565b6001600160a01b038116620010f75760405162461bcd60e51b8152600401808060200182810382526026815260200180620058906026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b613c8b806200116f83390190565b610a968062004dfa8339019056fe60806040523480156200001157600080fd5b5060405162003c8b38038062003c8b833981810160405260a08110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b50604081815260208301519201805192949193919284640100000000821115620001c157600080fd5b908301906020820185811115620001d757600080fd5b8251640100000000811182820188101715620001f257600080fd5b82525081516020918201929091019080838360005b838110156200022157818101518382015260200162000207565b50505050905090810190601f1680156200024f5780820380516001836020036101000a031916815260200191505b50604081905260209190910151600080546001600160a01b0319163317808255919450889350879287926001600160a01b031691907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a38251620002be906001906020860190620008d8565b508151620002d4906002906020850190620008d8565b506003805460ff191660ff9290921691909117905550620002f79050336200043a565b6200030b336001600160e01b036200048c16565b6009805460ff1916905562000329336001600160e01b03620004de16565b6200033d336001600160e01b036200053016565b62000351336001600160e01b036200058216565b815162000366906010906020850190620008d8565b506200037b816001600160e01b036200053016565b6200038f816001600160e01b036200048c16565b620003a3816001600160e01b03620004de16565b620003b7816001600160e01b036200043a16565b620003cb816001600160e01b036200058216565b620003df336001600160e01b03620005d416565b620003f3336001600160e01b036200062616565b62000407336001600160e01b036200067816565b6200041b336001600160e01b03620006ca16565b6200042f336001600160e01b036200071c16565b50505050506200097d565b620004558160076200076e60201b62002ab01790919060201c565b6040516001600160a01b038216907f86e57fd2b90329052917118de7c3f521f400d439b9650deaa906a25b08b9456090600090a250565b620004a78160086200076e60201b62002ab01790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b620004f981600a6200076e60201b62002ab01790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6200054b81600b6200076e60201b62002ab01790919060201c565b6040516001600160a01b038216907f021a687fbe334e9e815cee8b399c0bc42e82356eb7f63a09ddb558a25d3dcdbd90600090a250565b6200059d81600e6200076e60201b62002ab01790919060201c565b6040516001600160a01b038216907fac6fa858e9350a46cec16539926e0fde25b7629f84b5a72bffaae4df888ae86d90600090a250565b620005ef81600b620007fb60201b62002a331790919060201c565b6040516001600160a01b038216907f94a409f50d78dc8628b7499ba5af0848a134b9a935a59c0a45313b67f66920f890600090a250565b62000641816008620007fb60201b62002a331790919060201c565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b6200069381600a620007fb60201b62002a331790919060201c565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b620006e5816007620007fb60201b62002a331790919060201c565b6040516001600160a01b038216907f90eabbc0c667db2a5029ed6bc0f5fe9f356d11684a4ca9fcfaec0e53f12b9c8e90600090a250565b6200073781600e620007fb60201b62002a331790919060201c565b6040516001600160a01b038216907f80c0b871b97b595b16a7741c1b06fed0c6f6f558639f18ccbce50724325dc40d90600090a250565b6200078382826001600160e01b036200086f16565b15620007d6576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6200081082826001600160e01b036200086f16565b6200084d5760405162461bcd60e51b815260040180806020018281038252602181526020018062003c486021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60006001600160a01b038216620008b85760405162461bcd60e51b815260040180806020018281038252602281526020018062003c696022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200091b57805160ff19168380011785556200094b565b828001600101855582156200094b579182015b828111156200094b5782518255916020019190600101906200092e565b50620009599291506200095d565b5090565b6200097a91905b8082111562000959576000815560010162000964565b90565b6132bb806200098d6000396000f3fe608060405234801561001057600080fd5b50600436106103995760003560e01c80636ef8d66d116101e9578063aa271e1a1161010f578063cb0316d0116100ad578063efd460651161007c578063efd4606514610a28578063f2fde38b14610a4e578063f44637ba14610a74578063febce92c14610a9a57610399565b8063cb0316d0146109a6578063d65c7f30146109cc578063dd62ed3e146109f2578063e9ec9e8b14610a2057610399565b8063c4ec3b19116100e9578063c4ec3b1914610944578063c8b201521461094c578063ca2311be14610978578063cafb9b351461098057610399565b8063aa271e1a146108d2578063ac8a584a146108f8578063c37f32941461091e57610399565b806395d89b4111610187578063987e042c11610156578063987e042c1461083c5780639fc1d0e714610844578063a457c2d71461087a578063a9059cbb146108a657610399565b806395d89b41146107e0578063983b2d56146107e8578063986502751461080e5780639870d7fe1461081657610399565b806382dc1ec4116101c357806382dc1ec4146107a25780638456cb59146107c85780638da5cb5b146107d05780638f32d59b146107d857610399565b80636ef8d66d1461076c57806370a0823114610774578063715018a61461079a57610399565b806339509351116102ce57806347786d371161026c5780636a083b0c1161023b5780636a083b0c146106d45780636b2c0f55146106fa5780636d70f7ae146107205780636da7a4851461074657610399565b806347786d3714610663578063528a20f8146106805780635c975abb146106a657806366861b05146106ae57610399565b80633f4ba83a116102a85780633f4ba83a146105e357806340c10f19146105eb5780634334614a1461061757806346fbf68e1461063d57610399565b806339509351146105895780633a83e1b1146105b55780633b9dce05146105bd57610399565b806323b872dd1161033b5780633092afd5116103155780633092afd514610535578063313ce5671461055b578063355274ea14610579578063370158ea1461058157610399565b806323b872dd146104ef57806329e697f3146105255780632ab6f8db1461052d57610399565b8063138d194c11610377578063138d194c1461048357806318160ddd146104a75780631e6d3ce7146104c157806320c78e20146104c957610399565b8063028468581461039e57806306fdde03146103c6578063095ea7b314610443575b600080fd5b6103c4600480360360208110156103b457600080fd5b50356001600160a01b0316610ac0565b005b6103ce610b10565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104085781810151838201526020016103f0565b50505050905090810190601f1680156104355780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61046f6004803603604081101561045957600080fd5b506001600160a01b038135169060200135610ba5565b604080519115158252519081900360200190f35b61048b610ce4565b604080516001600160a01b039092168252519081900360200190f35b6104af610cf3565b60408051918252519081900360200190f35b6103c4610cf9565b6103c4600480360360208110156104df57600080fd5b50356001600160a01b0316610d81565b61046f6004803603606081101561050557600080fd5b506001600160a01b03813581169160208101359091169060400135610dda565b6103c4610f1a565b6103c4610f99565b6103c46004803603602081101561054b57600080fd5b50356001600160a01b0316610fe8565b610563611035565b6040805160ff9092168252519081900360200190f35b6104af61103e565b6103ce611044565b61046f6004803603604081101561059f57600080fd5b506001600160a01b0381351690602001356110d2565b6103c4611207565b6103c4600480360360208110156105d357600080fd5b50356001600160a01b031661128d565b6103c46112dd565b61046f6004803603604081101561060157600080fd5b506001600160a01b0381351690602001356113ae565b61046f6004803603602081101561062d57600080fd5b50356001600160a01b03166114db565b61046f6004803603602081101561065357600080fd5b50356001600160a01b03166114f4565b6103c46004803603602081101561067957600080fd5b5035611507565b6103c46004803603602081101561069657600080fd5b50356001600160a01b031661158e565b61046f6115e7565b6103c4600480360360208110156106c457600080fd5b50356001600160a01b03166115f0565b6103c4600480360360208110156106ea57600080fd5b50356001600160a01b031661163d565b6103c46004803603602081101561071057600080fd5b50356001600160a01b031661173d565b61046f6004803603602081101561073657600080fd5b50356001600160a01b031661178a565b6103c46004803603602081101561075c57600080fd5b50356001600160a01b031661179d565b6103c46117ea565b6104af6004803603602081101561078a57600080fd5b50356001600160a01b03166117f3565b6103c461180e565b6103c4600480360360208110156107b857600080fd5b50356001600160a01b031661189f565b6103c46118e3565b61048b6119b4565b61046f6119c3565b6103ce6119d4565b6103c4600480360360208110156107fe57600080fd5b50356001600160a01b0316611a32565b6103c4611a76565b6103c46004803603602081101561082c57600080fd5b50356001600160a01b0316611a7f565b61046f611acc565b61046f6004803603606081101561085a57600080fd5b506001600160a01b03813581169160208101359091169060400135611adc565b61046f6004803603604081101561089057600080fd5b506001600160a01b038135169060200135611bc6565b61046f600480360360408110156108bc57600080fd5b506001600160a01b038135169060200135611cfb565b61046f600480360360208110156108e857600080fd5b50356001600160a01b0316611e30565b6103c46004803603602081101561090e57600080fd5b50356001600160a01b0316611e43565b6103c46004803603602081101561093457600080fd5b50356001600160a01b0316611e90565b61046f611ee9565b61046f6004803603604081101561096257600080fd5b506001600160a01b038135169060200135611ef2565b6103c4611f93565b6103c46004803603602081101561099657600080fd5b50356001600160a01b0316611fe3565b6103c4600480360360208110156109bc57600080fd5b50356001600160a01b031661203c565b6103c4600480360360208110156109e257600080fd5b50356001600160a01b0316612089565b6104af60048036036040811015610a0857600080fd5b506001600160a01b03813581169160200135166120e2565b6103c461210d565b61046f60048036036020811015610a3e57600080fd5b50356001600160a01b031661215a565b6103c460048036036020811015610a6457600080fd5b50356001600160a01b031661216d565b6103c460048036036020811015610a8a57600080fd5b50356001600160a01b03166121bd565b6103c460048036036020811015610ab057600080fd5b50356001600160a01b0316612201565b610ac93361215a565b610b045760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b610b0d81612245565b50565b60018054604080516020601f60026000196101008789161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b9b5780601f10610b7057610100808354040283529160200191610b9b565b820191906000526020600020905b815481529060010190602001808311610b7e57829003601f168201915b5050505050905090565b60095460009060ff1615610bf3576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b33836000600f60149054906101000a900460ff1615610cd057600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b158015610c6957600080fd5b505afa158015610c7d573d6000803e3d6000fd5b505050506040513d6020811015610c9357600080fd5b5051610cd05760405162461bcd60e51b81526004018080602001828103825260228152602001806131c96022913960400191505060405180910390fd5b610cda868661228d565b9695505050505050565b600f546001600160a01b031681565b60065490565b610d023361215a565b610d3d5760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b600d805460ff191690556000600c556040805133815290517f6280a81c80b2df7faf6f83ce71e273a34be58559e9d50f976b404fface8052849181900360200190a1565b610d896119c3565b610dc8576040805162461bcd60e51b81526020600482018190526024820152600080516020613187833981519152604482015290519081900360640190fd5b610dd1816122ec565b610b0d33612334565b60095460009060ff1615610e28576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b338484600f60149054906101000a900460ff1615610f0457600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b158015610e9d57600080fd5b505afa158015610eb1573d6000803e3d6000fd5b505050506040513d6020811015610ec757600080fd5b5051610f045760405162461bcd60e51b81526004018080602001828103825260228152602001806131c96022913960400191505060405180910390fd5b610f0f87878761237c565b979650505050505050565b610f233361215a565b610f5e5760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b600f80546001600160a81b03191690556040517f1c0623b9b3fdaa174e2f472f2698def360517d0f437bbb48bad21b43b96a229f90600090a1565b610fa23361178a565b610fdd5760405162461bcd60e51b81526004018080602001828103825260348152602001806131026034913960400191505060405180910390fd5b610fe6336123dd565b565b610ff13361215a565b61102c5760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b610b0d81612425565b60035460ff1690565b600c5481565b6010805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156110ca5780601f1061109f576101008083540402835291602001916110ca565b820191906000526020600020905b8154815290600101906020018083116110ad57829003601f168201915b505050505081565b60095460009060ff1615611120576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b33836000600f60149054906101000a900460ff16156111fd57600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b15801561119657600080fd5b505afa1580156111aa573d6000803e3d6000fd5b505050506040513d60208110156111c057600080fd5b50516111fd5760405162461bcd60e51b81526004018080602001828103825260228152602001806131c96022913960400191505060405180910390fd5b610cda868661246d565b6112103361215a565b61124b5760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b600d805460ff191660011790556040805133815290517f444c236974761ca847da19780c83fa25a0df505fada90b6c87a194760c0cf2a09181900360200190a1565b6112956119c3565b6112d4576040805162461bcd60e51b81526020600482018190526024820152600080516020613187833981519152604482015290519081900360640190fd5b610b0d816124c5565b6112e6336114f4565b6113215760405162461bcd60e51b815260040180806020018281038252603081526020018061305a6030913960400191505060405180910390fd5b60095460ff1661136f576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6009805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006113b933611e30565b6113f45760405162461bcd60e51b81526004018080602001828103825260308152602001806131366030913960400191505060405180910390fd5b82600080600f60149054906101000a900460ff16156114d157600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b15801561146a57600080fd5b505afa15801561147e573d6000803e3d6000fd5b505050506040513d602081101561149457600080fd5b50516114d15760405162461bcd60e51b81526004018080602001828103825260228152602001806131c96022913960400191505060405180910390fd5b610cda868661250d565b60006114ee60078363ffffffff6125d616565b92915050565b60006114ee60088363ffffffff6125d616565b6115103361215a565b61154b5760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b600c819055604080513381526020810183905281517f1c9182333abe71fddddd188f90cabb1c34182de0b0ac74c87944a196460a2d6c929181900390910190a150565b6115966119c3565b6115d5576040805162461bcd60e51b81526020600482018190526024820152600080516020613187833981519152604482015290519081900360640190fd5b6115de816123dd565b610b0d3361263d565b60095460ff1690565b6115f93361215a565b6116345760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b610b0d81612334565b6116463361215a565b6116815760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b6001600160a01b0381166116dc576040805162461bcd60e51b815260206004820152601b60248201527f496e76616c696420616363657373206c69737420616464726573730000000000604482015290519081900360640190fd5b600f805460ff60a01b196001600160a01b0384166001600160a01b0319909216821716600160a01b1790915560408051918252517fe854fd23aa1cc9c07a5e4b0652c3fe1a0cbcedbd13031f17aa6641af89fbbc7f9181900360200190a150565b6117463361215a565b6117815760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b610b0d816122ec565b60006114ee600e8363ffffffff6125d616565b6117a63361215a565b6117e15760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b610b0d81612685565b610fe6336122ec565b6001600160a01b031660009081526004602052604090205490565b6118166119c3565b611855576040805162461bcd60e51b81526020600482018190526024820152600080516020613187833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6118a8336114f4565b6116345760405162461bcd60e51b815260040180806020018281038252603081526020018061305a6030913960400191505060405180910390fd5b6118ec336114f4565b6119275760405162461bcd60e51b815260040180806020018281038252603081526020018061305a6030913960400191505060405180910390fd5b60095460ff1615611972576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6009805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610b9b5780601f10610b7057610100808354040283529160200191610b9b565b611a3b33611e30565b6117e15760405162461bcd60e51b81526004018080602001828103825260308152602001806131366030913960400191505060405180910390fd5b610fe633612425565b611a883361178a565b611ac35760405162461bcd60e51b81526004018080602001828103825260348152602001806131026034913960400191505060405180910390fd5b610b0d8161263d565b600f54600160a01b900460ff1681565b600083836000600f60149054906101000a900460ff1615611bbb57600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b158015611b5457600080fd5b505afa158015611b68573d6000803e3d6000fd5b505050506040513d6020811015611b7e57600080fd5b5051611bbb5760405162461bcd60e51b81526004018080602001828103825260228152602001806131c96022913960400191505060405180910390fd5b610f0f8787876126cd565b60095460009060ff1615611c14576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b33836000600f60149054906101000a900460ff1615611cf157600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b158015611c8a57600080fd5b505afa158015611c9e573d6000803e3d6000fd5b505050506040513d6020811015611cb457600080fd5b5051611cf15760405162461bcd60e51b81526004018080602001828103825260228152602001806131c96022913960400191505060405180910390fd5b610cda8686612778565b60095460009060ff1615611d49576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b33836000600f60149054906101000a900460ff1615611e2657600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b158015611dbf57600080fd5b505afa158015611dd3573d6000803e3d6000fd5b505050506040513d6020811015611de957600080fd5b5051611e265760405162461bcd60e51b81526004018080602001828103825260228152602001806131c96022913960400191505060405180910390fd5b610cda86866127d0565b60006114ee600a8363ffffffff6125d616565b611e4c3361215a565b611e875760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b610b0d816123dd565b611e986119c3565b611ed7576040805162461bcd60e51b81526020600482018190526024820152600080516020613187833981519152604482015290519081900360640190fd5b611ee081612245565b610b0d33612828565b600d5460ff1681565b6000611efd336114db565b611f385760405162461bcd60e51b81526004018080602001828103825260308152602001806130d26030913960400191505060405180910390fd5b611f428383612870565b604080513381526001600160a01b038516602082015280820184905290517f7d87a0d6b3a3012345cd345f3818338913ce6a164fc30d6a7e8729f8176ef2a29181900360600190a150600192915050565b611f9b6119c3565b611fda576040805162461bcd60e51b81526020600482018190526024820152600080516020613187833981519152604482015290519081900360640190fd5b610fe63361294b565b611feb6119c3565b61202a576040805162461bcd60e51b81526020600482018190526024820152600080516020613187833981519152604482015290519081900360640190fd5b61203381612425565b610b0d33612685565b6120453361215a565b6120805760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b610b0d81612828565b6120916119c3565b6120d0576040805162461bcd60e51b81526020600482018190526024820152600080516020613187833981519152604482015290519081900360640190fd5b6120d98161294b565b610b0d336124c5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b612116336114db565b6121515760405162461bcd60e51b81526004018080602001828103825260308152602001806130d26030913960400191505060405180910390fd5b610fe633612245565b60006114ee600b8363ffffffff6125d616565b6121756119c3565b6121b4576040805162461bcd60e51b81526020600482018190526024820152600080516020613187833981519152604482015290519081900360640190fd5b610b0d81612993565b6121c6336114db565b6120805760405162461bcd60e51b81526004018080602001828103825260308152602001806130d26030913960400191505060405180910390fd5b61220a3361215a565b611ac35760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b61225660078263ffffffff612a3316565b6040516001600160a01b038216907f90eabbc0c667db2a5029ed6bc0f5fe9f356d11684a4ca9fcfaec0e53f12b9c8e90600090a250565b60095460009060ff16156122db576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6122e58383612a9a565b9392505050565b6122fd60088263ffffffff612a3316565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b61234560088263ffffffff612ab016565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b60095460009060ff16156123ca576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6123d5848484612b31565b949350505050565b6123ee600e8263ffffffff612a3316565b6040516001600160a01b038216907f80c0b871b97b595b16a7741c1b06fed0c6f6f558639f18ccbce50724325dc40d90600090a250565b612436600a8263ffffffff612a3316565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60095460009060ff16156124bb576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6122e58383612b88565b6124d6600b8263ffffffff612ab016565b6040516001600160a01b038216907f021a687fbe334e9e815cee8b399c0bc42e82356eb7f63a09ddb558a25d3dcdbd90600090a250565b600061251833611e30565b6125535760405162461bcd60e51b81526004018080602001828103825260308152602001806131366030913960400191505060405180910390fd5b600d5460ff16156125cc57600c546125798361256d610cf3565b9063ffffffff612bc416565b11156125cc576040805162461bcd60e51b815260206004820152601d60248201527f4552433230436170456e61626c65723a20636170206578636565646564000000604482015290519081900360640190fd5b6122e58383612c1e565b60006001600160a01b03821661261d5760405162461bcd60e51b81526004018080602001828103825260228152602001806131a76022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b61264e600e8263ffffffff612ab016565b6040516001600160a01b038216907fac6fa858e9350a46cec16539926e0fde25b7629f84b5a72bffaae4df888ae86d90600090a250565b612696600a8263ffffffff612ab016565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b60006126d83361178a565b6127135760405162461bcd60e51b81526004018080602001828103825260348152602001806131026034913960400191505060405180910390fd5b61271e848484612c6e565b604080513381526001600160a01b0380871660208301528516818301526060810184905290517f47cea260e2dfb95ed2ab59ad44fe2ac9cddb432afb828d2a1475936b5a2b829a9181900360800190a15060019392505050565b60095460009060ff16156127c6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6122e58383612db2565b60095460009060ff161561281e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6122e58383612dee565b61283960078263ffffffff612ab016565b6040516001600160a01b038216907f86e57fd2b90329052917118de7c3f521f400d439b9650deaa906a25b08b9456090600090a250565b6001600160a01b0382166128b55760405162461bcd60e51b81526004018080602001828103825260218152602001806131eb6021913960400191505060405180910390fd5b6006546128c8908263ffffffff612dfb16565b6006556001600160a01b0382166000908152600460205260409020546128f4908263ffffffff612dfb16565b6001600160a01b0383166000818152600460209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b61295c600b8263ffffffff612a3316565b6040516001600160a01b038216907f94a409f50d78dc8628b7499ba5af0848a134b9a935a59c0a45313b67f66920f890600090a250565b6001600160a01b0381166129d85760405162461bcd60e51b815260040180806020018281038252602681526020018061308a6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b612a3d82826125d6565b612a785760405162461bcd60e51b81526004018080602001828103825260218152602001806131666021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6000612aa7338484612e58565b50600192915050565b612aba82826125d6565b15612b0c576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000612b3e848484612c6e565b6001600160a01b038416600090815260056020908152604080832033808552925290912054612b7e918691612b79908663ffffffff612dfb16565b612e58565b5060019392505050565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091612aa7918590612b79908663ffffffff612bc416565b6000828201838110156122e5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000612c2933611e30565b612c645760405162461bcd60e51b81526004018080602001828103825260308152602001806131366030913960400191505060405180910390fd5b612aa78383612f44565b6001600160a01b038316612cb35760405162461bcd60e51b815260040180806020018281038252602581526020018061320c6025913960400191505060405180910390fd5b6001600160a01b038216612cf85760405162461bcd60e51b81526004018080602001828103825260238152602001806130376023913960400191505060405180910390fd5b6001600160a01b038316600090815260046020526040902054612d21908263ffffffff612dfb16565b6001600160a01b038085166000908152600460205260408082209390935590841681522054612d56908263ffffffff612bc416565b6001600160a01b0380841660008181526004602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091612aa7918590612b79908663ffffffff612dfb16565b6000612aa7338484612c6e565b600082821115612e52576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b038316612e9d5760405162461bcd60e51b81526004018080602001828103825260248152602001806132636024913960400191505060405180910390fd5b6001600160a01b038216612ee25760405162461bcd60e51b81526004018080602001828103825260228152602001806130b06022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038216612f9f576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600654612fb2908263ffffffff612bc416565b6006556001600160a01b038216600090815260046020526040902054612fde908263ffffffff612bc416565b6001600160a01b03831660008181526004602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734275726e6572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204275726e657220726f6c654f70657261746f72526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204f70657261746f7220726f6c654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734163636573734c6973743a2061646472657373206e6f7420617574686f72697a656445524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343726561746f72526f6c653a2063616c6c657220646f6573206e6f742068617665207468652043726561746f7220726f6c6545524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72315820e23da14b4221f1bfbaf608c66ee291372ab55de62d9194350f1a1f6a24476bbe64736f6c63430005100032526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373608060405234801561001057600080fd5b50604051610a96380380610a968339818101604052602081101561003357600080fd5b810190808051604051939291908464010000000082111561005357600080fd5b90830190602082018581111561006857600080fd5b825164010000000081118282018810171561008257600080fd5b82525081516020918201929091019080838360005b838110156100af578181015183820152602001610097565b50505050905090810190601f1680156100dc5780820380516001836020036101000a031916815260200191505b506040819052600080546001600160a01b03191633178082556001600160a01b0316945092507f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091508290a3805161013b906001906020840190610142565b50506101dd565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061018357805160ff19168380011785556101b0565b828001600101855582156101b0579182015b828111156101b0578251825591602001919060010190610195565b506101bc9291506101c0565b5090565b6101da91905b808211156101bc57600081556001016101c6565b90565b6108aa806101ec6000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80638f32d59b116100715780638f32d59b146101ef57806398cd9d8b1461020b578063a909342714610243578063a926819f146102b3578063b499ffd9146102d9578063f2fde38b146102ff576100a9565b80631269359a146100ae578063715018a6146100d65780637504bc95146100de5780637998a1c41461014e5780638da5cb5b146101cb575b600080fd5b6100d4600480360360208110156100c457600080fd5b50356001600160a01b0316610325565b005b6100d4610404565b6100d4600480360360208110156100f457600080fd5b81019060208101813564010000000081111561010f57600080fd5b82018360208201111561012157600080fd5b8035906020019184602083028401116401000000008311171561014357600080fd5b509092509050610495565b610156610518565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610190578181015183820152602001610178565b50505050905090810190601f1680156101bd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101d36105a5565b604080516001600160a01b039092168252519081900360200190f35b6101f76105b4565b604080519115158252519081900360200190f35b6101f76004803603606081101561022157600080fd5b506001600160a01b0381358116916020810135821691604090910135166105c5565b6100d46004803603602081101561025957600080fd5b81019060208101813564010000000081111561027457600080fd5b82018360208201111561028657600080fd5b803590602001918460208302840111640100000000831117156102a857600080fd5b5090925090506105f8565b6100d4600480360360208110156102c957600080fd5b50356001600160a01b0316610676565b6101f7600480360360208110156102ef57600080fd5b50356001600160a01b0316610706565b6100d46004803603602081101561031557600080fd5b50356001600160a01b031661073c565b61032d6105b4565b61036c576040805162461bcd60e51b81526020600482018190526024820152600080516020610856833981519152604482015290519081900360640190fd5b6001600160a01b0381166103b8576040805162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a59081dd85b1b195d60921b604482015290519081900360640190fd5b6001600160a01b038116600081815260026020526040808220805460ff19166001179055517f62c004bc1f4bc27167c7b89f7999c1530fab3eb1bc3b32a8f961cad663afabb69190a250565b61040c6105b4565b61044b576040805162461bcd60e51b81526020600482018190526024820152600080516020610856833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61049d6105b4565b6104dc576040805162461bcd60e51b81526020600482018190526024820152600080516020610856833981519152604482015290519081900360640190fd5b60005b818110156105135761050b8383838181106104f657fe5b905060200201356001600160a01b0316610676565b6001016104df565b505050565b60018054604080516020600284861615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561059d5780601f106105725761010080835404028352916020019161059d565b820191906000526020600020905b81548152906001019060200180831161058057829003601f168201915b505050505081565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b60006105d084610706565b80156105e057506105e083610706565b80156105f057506105f082610706565b949350505050565b6106006105b4565b61063f576040805162461bcd60e51b81526020600482018190526024820152600080516020610856833981519152604482015290519081900360640190fd5b60005b818110156105135761066e83838381811061065957fe5b905060200201356001600160a01b0316610325565b600101610642565b61067e6105b4565b6106bd576040805162461bcd60e51b81526020600482018190526024820152600080516020610856833981519152604482015290519081900360640190fd5b6001600160a01b038116600081815260026020526040808220805460ff19169055517f85969738510cb6e6555620dd854891d7ded5600db5136d59b4c71fb52ce6075b9190a250565b60006001600160a01b038216158061073657506001600160a01b03821660009081526002602052604090205460ff165b92915050565b6107446105b4565b610783576040805162461bcd60e51b81526020600482018190526024820152600080516020610856833981519152604482015290519081900360640190fd5b61078c8161078f565b50565b6001600160a01b0381166107d45760405162461bcd60e51b81526004018080602001828103825260268152602001806108306026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b039290921691909117905556fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a265627a7a72315820cc8a4a8359d1fca18844f935ff5342e2e12fb5dd5470d8026a5cd910e94b80ad64736f6c634300051000324f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734163636573734c697374206f776e6572206973206e6f7420617574686f72697a65644f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572417574686f72697a61626c653a2041646472657373206973206e6f7420617574686f72697a6564a265627a7a72315820a67a22f06ebdd2346ca3e3c771451b6866ae43cc5593322cce7f893bd35efb5c64736f6c63430005100032
Deployed Bytecode
0x60806040523480156200001157600080fd5b5060043610620000e25760003560e01c80638f32d59b1162000099578063d55f9273116200006f578063d55f9273146200040d578063f0ef50d81462000417578063f2fde38b146200054f578063fe9fbb80146200057857620000e2565b80638f32d59b1462000352578063994bb0b314620003705780639eefdd8714620003e457620000e2565b80632482ee2714620000e75780633f9ba3f4146200020a5780635036258b1462000266578063715018a6146200028f5780637fa739d214620002995780638da5cb5b146200032c575b600080fd5b6200020860048036036080811015620000ff57600080fd5b810190602081018135600160201b8111156200011a57600080fd5b8201836020820111156200012d57600080fd5b803590602001918460018302840111600160201b831117156200014f57600080fd5b919390929091602081019035600160201b8111156200016d57600080fd5b8201836020820111156200018057600080fd5b803590602001918460018302840111600160201b83111715620001a257600080fd5b9193909260ff83351692604081019060200135600160201b811115620001c757600080fd5b820183602082011115620001da57600080fd5b803590602001918460018302840111600160201b83111715620001fc57600080fd5b509092509050620005a1565b005b6200021462000870565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156200025257818101518382015260200162000238565b505050509050019250505060405180910390f35b62000208600480360360208110156200027e57600080fd5b50356001600160a01b0316620008d4565b6200020862000977565b6200020860048036036080811015620002b157600080fd5b6001600160a01b038235169190810190604081016020820135600160201b811115620002dc57600080fd5b820183602082011115620002ef57600080fd5b803590602001918460018302840111600160201b831117156200031157600080fd5b9193509150803590602001356001600160a01b031662000a0c565b6200033662000b62565b604080516001600160a01b039092168252519081900360200190f35b6200035c62000b71565b604080519115158252519081900360200190f35b62000208600480360360208110156200038857600080fd5b810190602081018135600160201b811115620003a357600080fd5b820183602082011115620003b657600080fd5b803590602001918460018302840111600160201b83111715620003d857600080fd5b50909250905062000b82565b6200020860048036036020811015620003fc57600080fd5b50356001600160a01b031662000d55565b6200021462000dfc565b62000208600480360360e08110156200042f57600080fd5b810190602081018135600160201b8111156200044a57600080fd5b8201836020820111156200045d57600080fd5b803590602001918460018302840111600160201b831117156200047f57600080fd5b919390929091602081019035600160201b8111156200049d57600080fd5b820183602082011115620004b057600080fd5b803590602001918460018302840111600160201b83111715620004d257600080fd5b9193909260ff83351692604081019060200135600160201b811115620004f757600080fd5b8201836020820111156200050a57600080fd5b803590602001918460018302840111600160201b831117156200052c57600080fd5b91935091508035906001600160a01b036020820135811691604001351662000e5e565b62000208600480360360208110156200056757600080fd5b50356001600160a01b031662001039565b6200035c600480360360208110156200059057600080fd5b50356001600160a01b031662001092565b3360009081526001602052604090205460ff16620005f15760405162461bcd60e51b8152600401808060200182810382526027815260200180620058f86027913960400191505060405180910390fd5b60008787878787878733604051620006099062001152565b60ff851660408201526001600160a01b038216608082015260a0808252810188905280602081016060820160c083018c8c80828437600083820152601f01601f191690910185810384528a815260200190508a8a80828437600083820152601f01601f1916909101858103835287815260200190508787808284376000838201819052604051601f909201601f19169093018190039e509c50909a5050505050505050505050f080158015620006c3573d6000803e3d6000fd5b509050806001600160a01b031663f2fde38b620006df62000b62565b6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050600060405180830381600087803b1580156200072857600080fd5b505af11580156200073d573d6000803e3d6000fd5b5050600280546001810182556000919091527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040805160ff891691810191909152436080820181905260a080835282018c90523394509192507f8eb60c6610753cb4bf917ac1461ff4623419391b69f4bfe49031a860c30e9ceb918c918c918c918c918c918c918c9180602081016060820160c083018c8c80828437600083820152601f01601f191690910185810384528a815260200190508a8a80828437600083820152601f01601f191690910185810383528781526020019050878780828437600083820152604051601f909101601f19169092018290039d50909b505050505050505050505050a35050505050505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620008ca57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620008ab575b5050505050905090565b620008de62000b71565b6200091f576040805162461bcd60e51b81526020600482018190526024820152600080516020620058d8833981519152604482015290519081900360640190fd5b6001600160a01b038116600081815260016020908152604091829020805460ff19169055815192835290517fe1a480415c61b058b3701fbb135fccaebe891ff64b16e7c5d576c45ae34cff019281900390910190a150565b6200098162000b71565b620009c2576040805162461bcd60e51b81526020600482018190526024820152600080516020620058d8833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b62000a1662000b71565b62000a57576040805162461bcd60e51b81526020600482018190526024820152600080516020620058d8833981519152604482015290519081900360640190fd5b62000a628162001092565b62000a9f5760405162461bcd60e51b8152600401808060200182810382526022815260200180620058b66022913960400191505060405180910390fd5b600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b038781169182179092556040805160208101869052818152908101869052918316917f675147d8ada3ead2a802c551b68fdf7c946ccf4ce5524eb05e0ae0b47eef8c4b908790879087908060608101858580828437600083820152604051601f909101601f1916909201829003965090945050505050a35050505050565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b3360009081526001602052604090205460ff1662000bd25760405162461bcd60e51b8152600401808060200182810382526027815260200180620058f86027913960400191505060405180910390fd5b6000828260405162000be49062001160565b6020808252810182905280604081018484808284376000838201819052604051601f909201601f1916909301819003965094509092505050f08015801562000c30573d6000803e3d6000fd5b506040805163f2fde38b60e01b815233600482015290519192506001600160a01b0383169163f2fde38b9160248082019260009290919082900301818387803b15801562000c7d57600080fd5b505af115801562000c92573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0385169081179091556040805143602082018190528282529181018790523394509192507f675147d8ada3ead2a802c551b68fdf7c946ccf4ce5524eb05e0ae0b47eef8c4b91879187918060608101858580828437600083820152604051601f909101601f1916909201829003965090945050505050a3505050565b62000d5f62000b71565b62000da0576040805162461bcd60e51b81526020600482018190526024820152600080516020620058d8833981519152604482015290519081900360640190fd5b6001600160a01b038116600081815260016020818152604092839020805460ff1916909217909155815192835290517f869aa55c6ddc1d74ef2c7b3a72ad2337d1a47b8cfc62409107f501c879050e719281900390910190a150565b60606002805480602002602001604051908101604052809291908181526020018280548015620008ca576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311620008ab575050505050905090565b62000e6862000b71565b62000ea9576040805162461bcd60e51b81526020600482018190526024820152600080516020620058d8833981519152604482015290519081900360640190fd5b62000eb48162001092565b62000f06576040805162461bcd60e51b815260206004820152601d60248201527f546f6b656e206f776e6572206973206e6f7420617574686f72697a6564000000604482015290519081900360640190fd5b600280546001810182556000919091527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b038481169182179092556040805160ff8a16918101919091526080810186905260a080825281018c9052918316917f8eb60c6610753cb4bf917ac1461ff4623419391b69f4bfe49031a860c30e9ceb908d908d908d908d908d908d908d908d9080602081016060820160c083018c8c80828437600083820152601f01601f191690910185810384528a815260200190508a8a80828437600083820152601f01601f191690910185810383528781526020019050878780828437600083820152604051601f909101601f19169092018290039d50909b505050505050505050505050a350505050505050505050565b6200104362000b71565b62001084576040805162461bcd60e51b81526020600482018190526024820152600080516020620058d8833981519152604482015290519081900360640190fd5b6200108f81620010b0565b50565b6001600160a01b031660009081526001602052604090205460ff1690565b6001600160a01b038116620010f75760405162461bcd60e51b8152600401808060200182810382526026815260200180620058906026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b613c8b806200116f83390190565b610a968062004dfa8339019056fe60806040523480156200001157600080fd5b5060405162003c8b38038062003c8b833981810160405260a08110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b50604081815260208301519201805192949193919284640100000000821115620001c157600080fd5b908301906020820185811115620001d757600080fd5b8251640100000000811182820188101715620001f257600080fd5b82525081516020918201929091019080838360005b838110156200022157818101518382015260200162000207565b50505050905090810190601f1680156200024f5780820380516001836020036101000a031916815260200191505b50604081905260209190910151600080546001600160a01b0319163317808255919450889350879287926001600160a01b031691907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a38251620002be906001906020860190620008d8565b508151620002d4906002906020850190620008d8565b506003805460ff191660ff9290921691909117905550620002f79050336200043a565b6200030b336001600160e01b036200048c16565b6009805460ff1916905562000329336001600160e01b03620004de16565b6200033d336001600160e01b036200053016565b62000351336001600160e01b036200058216565b815162000366906010906020850190620008d8565b506200037b816001600160e01b036200053016565b6200038f816001600160e01b036200048c16565b620003a3816001600160e01b03620004de16565b620003b7816001600160e01b036200043a16565b620003cb816001600160e01b036200058216565b620003df336001600160e01b03620005d416565b620003f3336001600160e01b036200062616565b62000407336001600160e01b036200067816565b6200041b336001600160e01b03620006ca16565b6200042f336001600160e01b036200071c16565b50505050506200097d565b620004558160076200076e60201b62002ab01790919060201c565b6040516001600160a01b038216907f86e57fd2b90329052917118de7c3f521f400d439b9650deaa906a25b08b9456090600090a250565b620004a78160086200076e60201b62002ab01790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b620004f981600a6200076e60201b62002ab01790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6200054b81600b6200076e60201b62002ab01790919060201c565b6040516001600160a01b038216907f021a687fbe334e9e815cee8b399c0bc42e82356eb7f63a09ddb558a25d3dcdbd90600090a250565b6200059d81600e6200076e60201b62002ab01790919060201c565b6040516001600160a01b038216907fac6fa858e9350a46cec16539926e0fde25b7629f84b5a72bffaae4df888ae86d90600090a250565b620005ef81600b620007fb60201b62002a331790919060201c565b6040516001600160a01b038216907f94a409f50d78dc8628b7499ba5af0848a134b9a935a59c0a45313b67f66920f890600090a250565b62000641816008620007fb60201b62002a331790919060201c565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b6200069381600a620007fb60201b62002a331790919060201c565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b620006e5816007620007fb60201b62002a331790919060201c565b6040516001600160a01b038216907f90eabbc0c667db2a5029ed6bc0f5fe9f356d11684a4ca9fcfaec0e53f12b9c8e90600090a250565b6200073781600e620007fb60201b62002a331790919060201c565b6040516001600160a01b038216907f80c0b871b97b595b16a7741c1b06fed0c6f6f558639f18ccbce50724325dc40d90600090a250565b6200078382826001600160e01b036200086f16565b15620007d6576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6200081082826001600160e01b036200086f16565b6200084d5760405162461bcd60e51b815260040180806020018281038252602181526020018062003c486021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60006001600160a01b038216620008b85760405162461bcd60e51b815260040180806020018281038252602281526020018062003c696022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200091b57805160ff19168380011785556200094b565b828001600101855582156200094b579182015b828111156200094b5782518255916020019190600101906200092e565b50620009599291506200095d565b5090565b6200097a91905b8082111562000959576000815560010162000964565b90565b6132bb806200098d6000396000f3fe608060405234801561001057600080fd5b50600436106103995760003560e01c80636ef8d66d116101e9578063aa271e1a1161010f578063cb0316d0116100ad578063efd460651161007c578063efd4606514610a28578063f2fde38b14610a4e578063f44637ba14610a74578063febce92c14610a9a57610399565b8063cb0316d0146109a6578063d65c7f30146109cc578063dd62ed3e146109f2578063e9ec9e8b14610a2057610399565b8063c4ec3b19116100e9578063c4ec3b1914610944578063c8b201521461094c578063ca2311be14610978578063cafb9b351461098057610399565b8063aa271e1a146108d2578063ac8a584a146108f8578063c37f32941461091e57610399565b806395d89b4111610187578063987e042c11610156578063987e042c1461083c5780639fc1d0e714610844578063a457c2d71461087a578063a9059cbb146108a657610399565b806395d89b41146107e0578063983b2d56146107e8578063986502751461080e5780639870d7fe1461081657610399565b806382dc1ec4116101c357806382dc1ec4146107a25780638456cb59146107c85780638da5cb5b146107d05780638f32d59b146107d857610399565b80636ef8d66d1461076c57806370a0823114610774578063715018a61461079a57610399565b806339509351116102ce57806347786d371161026c5780636a083b0c1161023b5780636a083b0c146106d45780636b2c0f55146106fa5780636d70f7ae146107205780636da7a4851461074657610399565b806347786d3714610663578063528a20f8146106805780635c975abb146106a657806366861b05146106ae57610399565b80633f4ba83a116102a85780633f4ba83a146105e357806340c10f19146105eb5780634334614a1461061757806346fbf68e1461063d57610399565b806339509351146105895780633a83e1b1146105b55780633b9dce05146105bd57610399565b806323b872dd1161033b5780633092afd5116103155780633092afd514610535578063313ce5671461055b578063355274ea14610579578063370158ea1461058157610399565b806323b872dd146104ef57806329e697f3146105255780632ab6f8db1461052d57610399565b8063138d194c11610377578063138d194c1461048357806318160ddd146104a75780631e6d3ce7146104c157806320c78e20146104c957610399565b8063028468581461039e57806306fdde03146103c6578063095ea7b314610443575b600080fd5b6103c4600480360360208110156103b457600080fd5b50356001600160a01b0316610ac0565b005b6103ce610b10565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104085781810151838201526020016103f0565b50505050905090810190601f1680156104355780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61046f6004803603604081101561045957600080fd5b506001600160a01b038135169060200135610ba5565b604080519115158252519081900360200190f35b61048b610ce4565b604080516001600160a01b039092168252519081900360200190f35b6104af610cf3565b60408051918252519081900360200190f35b6103c4610cf9565b6103c4600480360360208110156104df57600080fd5b50356001600160a01b0316610d81565b61046f6004803603606081101561050557600080fd5b506001600160a01b03813581169160208101359091169060400135610dda565b6103c4610f1a565b6103c4610f99565b6103c46004803603602081101561054b57600080fd5b50356001600160a01b0316610fe8565b610563611035565b6040805160ff9092168252519081900360200190f35b6104af61103e565b6103ce611044565b61046f6004803603604081101561059f57600080fd5b506001600160a01b0381351690602001356110d2565b6103c4611207565b6103c4600480360360208110156105d357600080fd5b50356001600160a01b031661128d565b6103c46112dd565b61046f6004803603604081101561060157600080fd5b506001600160a01b0381351690602001356113ae565b61046f6004803603602081101561062d57600080fd5b50356001600160a01b03166114db565b61046f6004803603602081101561065357600080fd5b50356001600160a01b03166114f4565b6103c46004803603602081101561067957600080fd5b5035611507565b6103c46004803603602081101561069657600080fd5b50356001600160a01b031661158e565b61046f6115e7565b6103c4600480360360208110156106c457600080fd5b50356001600160a01b03166115f0565b6103c4600480360360208110156106ea57600080fd5b50356001600160a01b031661163d565b6103c46004803603602081101561071057600080fd5b50356001600160a01b031661173d565b61046f6004803603602081101561073657600080fd5b50356001600160a01b031661178a565b6103c46004803603602081101561075c57600080fd5b50356001600160a01b031661179d565b6103c46117ea565b6104af6004803603602081101561078a57600080fd5b50356001600160a01b03166117f3565b6103c461180e565b6103c4600480360360208110156107b857600080fd5b50356001600160a01b031661189f565b6103c46118e3565b61048b6119b4565b61046f6119c3565b6103ce6119d4565b6103c4600480360360208110156107fe57600080fd5b50356001600160a01b0316611a32565b6103c4611a76565b6103c46004803603602081101561082c57600080fd5b50356001600160a01b0316611a7f565b61046f611acc565b61046f6004803603606081101561085a57600080fd5b506001600160a01b03813581169160208101359091169060400135611adc565b61046f6004803603604081101561089057600080fd5b506001600160a01b038135169060200135611bc6565b61046f600480360360408110156108bc57600080fd5b506001600160a01b038135169060200135611cfb565b61046f600480360360208110156108e857600080fd5b50356001600160a01b0316611e30565b6103c46004803603602081101561090e57600080fd5b50356001600160a01b0316611e43565b6103c46004803603602081101561093457600080fd5b50356001600160a01b0316611e90565b61046f611ee9565b61046f6004803603604081101561096257600080fd5b506001600160a01b038135169060200135611ef2565b6103c4611f93565b6103c46004803603602081101561099657600080fd5b50356001600160a01b0316611fe3565b6103c4600480360360208110156109bc57600080fd5b50356001600160a01b031661203c565b6103c4600480360360208110156109e257600080fd5b50356001600160a01b0316612089565b6104af60048036036040811015610a0857600080fd5b506001600160a01b03813581169160200135166120e2565b6103c461210d565b61046f60048036036020811015610a3e57600080fd5b50356001600160a01b031661215a565b6103c460048036036020811015610a6457600080fd5b50356001600160a01b031661216d565b6103c460048036036020811015610a8a57600080fd5b50356001600160a01b03166121bd565b6103c460048036036020811015610ab057600080fd5b50356001600160a01b0316612201565b610ac93361215a565b610b045760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b610b0d81612245565b50565b60018054604080516020601f60026000196101008789161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b9b5780601f10610b7057610100808354040283529160200191610b9b565b820191906000526020600020905b815481529060010190602001808311610b7e57829003601f168201915b5050505050905090565b60095460009060ff1615610bf3576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b33836000600f60149054906101000a900460ff1615610cd057600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b158015610c6957600080fd5b505afa158015610c7d573d6000803e3d6000fd5b505050506040513d6020811015610c9357600080fd5b5051610cd05760405162461bcd60e51b81526004018080602001828103825260228152602001806131c96022913960400191505060405180910390fd5b610cda868661228d565b9695505050505050565b600f546001600160a01b031681565b60065490565b610d023361215a565b610d3d5760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b600d805460ff191690556000600c556040805133815290517f6280a81c80b2df7faf6f83ce71e273a34be58559e9d50f976b404fface8052849181900360200190a1565b610d896119c3565b610dc8576040805162461bcd60e51b81526020600482018190526024820152600080516020613187833981519152604482015290519081900360640190fd5b610dd1816122ec565b610b0d33612334565b60095460009060ff1615610e28576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b338484600f60149054906101000a900460ff1615610f0457600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b158015610e9d57600080fd5b505afa158015610eb1573d6000803e3d6000fd5b505050506040513d6020811015610ec757600080fd5b5051610f045760405162461bcd60e51b81526004018080602001828103825260228152602001806131c96022913960400191505060405180910390fd5b610f0f87878761237c565b979650505050505050565b610f233361215a565b610f5e5760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b600f80546001600160a81b03191690556040517f1c0623b9b3fdaa174e2f472f2698def360517d0f437bbb48bad21b43b96a229f90600090a1565b610fa23361178a565b610fdd5760405162461bcd60e51b81526004018080602001828103825260348152602001806131026034913960400191505060405180910390fd5b610fe6336123dd565b565b610ff13361215a565b61102c5760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b610b0d81612425565b60035460ff1690565b600c5481565b6010805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156110ca5780601f1061109f576101008083540402835291602001916110ca565b820191906000526020600020905b8154815290600101906020018083116110ad57829003601f168201915b505050505081565b60095460009060ff1615611120576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b33836000600f60149054906101000a900460ff16156111fd57600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b15801561119657600080fd5b505afa1580156111aa573d6000803e3d6000fd5b505050506040513d60208110156111c057600080fd5b50516111fd5760405162461bcd60e51b81526004018080602001828103825260228152602001806131c96022913960400191505060405180910390fd5b610cda868661246d565b6112103361215a565b61124b5760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b600d805460ff191660011790556040805133815290517f444c236974761ca847da19780c83fa25a0df505fada90b6c87a194760c0cf2a09181900360200190a1565b6112956119c3565b6112d4576040805162461bcd60e51b81526020600482018190526024820152600080516020613187833981519152604482015290519081900360640190fd5b610b0d816124c5565b6112e6336114f4565b6113215760405162461bcd60e51b815260040180806020018281038252603081526020018061305a6030913960400191505060405180910390fd5b60095460ff1661136f576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6009805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006113b933611e30565b6113f45760405162461bcd60e51b81526004018080602001828103825260308152602001806131366030913960400191505060405180910390fd5b82600080600f60149054906101000a900460ff16156114d157600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b15801561146a57600080fd5b505afa15801561147e573d6000803e3d6000fd5b505050506040513d602081101561149457600080fd5b50516114d15760405162461bcd60e51b81526004018080602001828103825260228152602001806131c96022913960400191505060405180910390fd5b610cda868661250d565b60006114ee60078363ffffffff6125d616565b92915050565b60006114ee60088363ffffffff6125d616565b6115103361215a565b61154b5760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b600c819055604080513381526020810183905281517f1c9182333abe71fddddd188f90cabb1c34182de0b0ac74c87944a196460a2d6c929181900390910190a150565b6115966119c3565b6115d5576040805162461bcd60e51b81526020600482018190526024820152600080516020613187833981519152604482015290519081900360640190fd5b6115de816123dd565b610b0d3361263d565b60095460ff1690565b6115f93361215a565b6116345760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b610b0d81612334565b6116463361215a565b6116815760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b6001600160a01b0381166116dc576040805162461bcd60e51b815260206004820152601b60248201527f496e76616c696420616363657373206c69737420616464726573730000000000604482015290519081900360640190fd5b600f805460ff60a01b196001600160a01b0384166001600160a01b0319909216821716600160a01b1790915560408051918252517fe854fd23aa1cc9c07a5e4b0652c3fe1a0cbcedbd13031f17aa6641af89fbbc7f9181900360200190a150565b6117463361215a565b6117815760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b610b0d816122ec565b60006114ee600e8363ffffffff6125d616565b6117a63361215a565b6117e15760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b610b0d81612685565b610fe6336122ec565b6001600160a01b031660009081526004602052604090205490565b6118166119c3565b611855576040805162461bcd60e51b81526020600482018190526024820152600080516020613187833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6118a8336114f4565b6116345760405162461bcd60e51b815260040180806020018281038252603081526020018061305a6030913960400191505060405180910390fd5b6118ec336114f4565b6119275760405162461bcd60e51b815260040180806020018281038252603081526020018061305a6030913960400191505060405180910390fd5b60095460ff1615611972576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6009805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610b9b5780601f10610b7057610100808354040283529160200191610b9b565b611a3b33611e30565b6117e15760405162461bcd60e51b81526004018080602001828103825260308152602001806131366030913960400191505060405180910390fd5b610fe633612425565b611a883361178a565b611ac35760405162461bcd60e51b81526004018080602001828103825260348152602001806131026034913960400191505060405180910390fd5b610b0d8161263d565b600f54600160a01b900460ff1681565b600083836000600f60149054906101000a900460ff1615611bbb57600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b158015611b5457600080fd5b505afa158015611b68573d6000803e3d6000fd5b505050506040513d6020811015611b7e57600080fd5b5051611bbb5760405162461bcd60e51b81526004018080602001828103825260228152602001806131c96022913960400191505060405180910390fd5b610f0f8787876126cd565b60095460009060ff1615611c14576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b33836000600f60149054906101000a900460ff1615611cf157600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b158015611c8a57600080fd5b505afa158015611c9e573d6000803e3d6000fd5b505050506040513d6020811015611cb457600080fd5b5051611cf15760405162461bcd60e51b81526004018080602001828103825260228152602001806131c96022913960400191505060405180910390fd5b610cda8686612778565b60095460009060ff1615611d49576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b33836000600f60149054906101000a900460ff1615611e2657600f54604080516398cd9d8b60e01b81526001600160a01b03868116600483015285811660248301528481166044830152915191909216916398cd9d8b916064808301926020929190829003018186803b158015611dbf57600080fd5b505afa158015611dd3573d6000803e3d6000fd5b505050506040513d6020811015611de957600080fd5b5051611e265760405162461bcd60e51b81526004018080602001828103825260228152602001806131c96022913960400191505060405180910390fd5b610cda86866127d0565b60006114ee600a8363ffffffff6125d616565b611e4c3361215a565b611e875760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b610b0d816123dd565b611e986119c3565b611ed7576040805162461bcd60e51b81526020600482018190526024820152600080516020613187833981519152604482015290519081900360640190fd5b611ee081612245565b610b0d33612828565b600d5460ff1681565b6000611efd336114db565b611f385760405162461bcd60e51b81526004018080602001828103825260308152602001806130d26030913960400191505060405180910390fd5b611f428383612870565b604080513381526001600160a01b038516602082015280820184905290517f7d87a0d6b3a3012345cd345f3818338913ce6a164fc30d6a7e8729f8176ef2a29181900360600190a150600192915050565b611f9b6119c3565b611fda576040805162461bcd60e51b81526020600482018190526024820152600080516020613187833981519152604482015290519081900360640190fd5b610fe63361294b565b611feb6119c3565b61202a576040805162461bcd60e51b81526020600482018190526024820152600080516020613187833981519152604482015290519081900360640190fd5b61203381612425565b610b0d33612685565b6120453361215a565b6120805760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b610b0d81612828565b6120916119c3565b6120d0576040805162461bcd60e51b81526020600482018190526024820152600080516020613187833981519152604482015290519081900360640190fd5b6120d98161294b565b610b0d336124c5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b612116336114db565b6121515760405162461bcd60e51b81526004018080602001828103825260308152602001806130d26030913960400191505060405180910390fd5b610fe633612245565b60006114ee600b8363ffffffff6125d616565b6121756119c3565b6121b4576040805162461bcd60e51b81526020600482018190526024820152600080516020613187833981519152604482015290519081900360640190fd5b610b0d81612993565b6121c6336114db565b6120805760405162461bcd60e51b81526004018080602001828103825260308152602001806130d26030913960400191505060405180910390fd5b61220a3361215a565b611ac35760405162461bcd60e51b81526004018080602001828103825260328152602001806132316032913960400191505060405180910390fd5b61225660078263ffffffff612a3316565b6040516001600160a01b038216907f90eabbc0c667db2a5029ed6bc0f5fe9f356d11684a4ca9fcfaec0e53f12b9c8e90600090a250565b60095460009060ff16156122db576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6122e58383612a9a565b9392505050565b6122fd60088263ffffffff612a3316565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b61234560088263ffffffff612ab016565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b60095460009060ff16156123ca576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6123d5848484612b31565b949350505050565b6123ee600e8263ffffffff612a3316565b6040516001600160a01b038216907f80c0b871b97b595b16a7741c1b06fed0c6f6f558639f18ccbce50724325dc40d90600090a250565b612436600a8263ffffffff612a3316565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60095460009060ff16156124bb576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6122e58383612b88565b6124d6600b8263ffffffff612ab016565b6040516001600160a01b038216907f021a687fbe334e9e815cee8b399c0bc42e82356eb7f63a09ddb558a25d3dcdbd90600090a250565b600061251833611e30565b6125535760405162461bcd60e51b81526004018080602001828103825260308152602001806131366030913960400191505060405180910390fd5b600d5460ff16156125cc57600c546125798361256d610cf3565b9063ffffffff612bc416565b11156125cc576040805162461bcd60e51b815260206004820152601d60248201527f4552433230436170456e61626c65723a20636170206578636565646564000000604482015290519081900360640190fd5b6122e58383612c1e565b60006001600160a01b03821661261d5760405162461bcd60e51b81526004018080602001828103825260228152602001806131a76022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b61264e600e8263ffffffff612ab016565b6040516001600160a01b038216907fac6fa858e9350a46cec16539926e0fde25b7629f84b5a72bffaae4df888ae86d90600090a250565b612696600a8263ffffffff612ab016565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b60006126d83361178a565b6127135760405162461bcd60e51b81526004018080602001828103825260348152602001806131026034913960400191505060405180910390fd5b61271e848484612c6e565b604080513381526001600160a01b0380871660208301528516818301526060810184905290517f47cea260e2dfb95ed2ab59ad44fe2ac9cddb432afb828d2a1475936b5a2b829a9181900360800190a15060019392505050565b60095460009060ff16156127c6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6122e58383612db2565b60095460009060ff161561281e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6122e58383612dee565b61283960078263ffffffff612ab016565b6040516001600160a01b038216907f86e57fd2b90329052917118de7c3f521f400d439b9650deaa906a25b08b9456090600090a250565b6001600160a01b0382166128b55760405162461bcd60e51b81526004018080602001828103825260218152602001806131eb6021913960400191505060405180910390fd5b6006546128c8908263ffffffff612dfb16565b6006556001600160a01b0382166000908152600460205260409020546128f4908263ffffffff612dfb16565b6001600160a01b0383166000818152600460209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b61295c600b8263ffffffff612a3316565b6040516001600160a01b038216907f94a409f50d78dc8628b7499ba5af0848a134b9a935a59c0a45313b67f66920f890600090a250565b6001600160a01b0381166129d85760405162461bcd60e51b815260040180806020018281038252602681526020018061308a6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b612a3d82826125d6565b612a785760405162461bcd60e51b81526004018080602001828103825260218152602001806131666021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6000612aa7338484612e58565b50600192915050565b612aba82826125d6565b15612b0c576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000612b3e848484612c6e565b6001600160a01b038416600090815260056020908152604080832033808552925290912054612b7e918691612b79908663ffffffff612dfb16565b612e58565b5060019392505050565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091612aa7918590612b79908663ffffffff612bc416565b6000828201838110156122e5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000612c2933611e30565b612c645760405162461bcd60e51b81526004018080602001828103825260308152602001806131366030913960400191505060405180910390fd5b612aa78383612f44565b6001600160a01b038316612cb35760405162461bcd60e51b815260040180806020018281038252602581526020018061320c6025913960400191505060405180910390fd5b6001600160a01b038216612cf85760405162461bcd60e51b81526004018080602001828103825260238152602001806130376023913960400191505060405180910390fd5b6001600160a01b038316600090815260046020526040902054612d21908263ffffffff612dfb16565b6001600160a01b038085166000908152600460205260408082209390935590841681522054612d56908263ffffffff612bc416565b6001600160a01b0380841660008181526004602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091612aa7918590612b79908663ffffffff612dfb16565b6000612aa7338484612c6e565b600082821115612e52576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b038316612e9d5760405162461bcd60e51b81526004018080602001828103825260248152602001806132636024913960400191505060405180910390fd5b6001600160a01b038216612ee25760405162461bcd60e51b81526004018080602001828103825260228152602001806130b06022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038216612f9f576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600654612fb2908263ffffffff612bc416565b6006556001600160a01b038216600090815260046020526040902054612fde908263ffffffff612bc416565b6001600160a01b03831660008181526004602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734275726e6572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204275726e657220726f6c654f70657261746f72526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204f70657261746f7220726f6c654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734163636573734c6973743a2061646472657373206e6f7420617574686f72697a656445524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343726561746f72526f6c653a2063616c6c657220646f6573206e6f742068617665207468652043726561746f7220726f6c6545524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72315820e23da14b4221f1bfbaf608c66ee291372ab55de62d9194350f1a1f6a24476bbe64736f6c63430005100032526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373608060405234801561001057600080fd5b50604051610a96380380610a968339818101604052602081101561003357600080fd5b810190808051604051939291908464010000000082111561005357600080fd5b90830190602082018581111561006857600080fd5b825164010000000081118282018810171561008257600080fd5b82525081516020918201929091019080838360005b838110156100af578181015183820152602001610097565b50505050905090810190601f1680156100dc5780820380516001836020036101000a031916815260200191505b506040819052600080546001600160a01b03191633178082556001600160a01b0316945092507f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091508290a3805161013b906001906020840190610142565b50506101dd565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061018357805160ff19168380011785556101b0565b828001600101855582156101b0579182015b828111156101b0578251825591602001919060010190610195565b506101bc9291506101c0565b5090565b6101da91905b808211156101bc57600081556001016101c6565b90565b6108aa806101ec6000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80638f32d59b116100715780638f32d59b146101ef57806398cd9d8b1461020b578063a909342714610243578063a926819f146102b3578063b499ffd9146102d9578063f2fde38b146102ff576100a9565b80631269359a146100ae578063715018a6146100d65780637504bc95146100de5780637998a1c41461014e5780638da5cb5b146101cb575b600080fd5b6100d4600480360360208110156100c457600080fd5b50356001600160a01b0316610325565b005b6100d4610404565b6100d4600480360360208110156100f457600080fd5b81019060208101813564010000000081111561010f57600080fd5b82018360208201111561012157600080fd5b8035906020019184602083028401116401000000008311171561014357600080fd5b509092509050610495565b610156610518565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610190578181015183820152602001610178565b50505050905090810190601f1680156101bd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101d36105a5565b604080516001600160a01b039092168252519081900360200190f35b6101f76105b4565b604080519115158252519081900360200190f35b6101f76004803603606081101561022157600080fd5b506001600160a01b0381358116916020810135821691604090910135166105c5565b6100d46004803603602081101561025957600080fd5b81019060208101813564010000000081111561027457600080fd5b82018360208201111561028657600080fd5b803590602001918460208302840111640100000000831117156102a857600080fd5b5090925090506105f8565b6100d4600480360360208110156102c957600080fd5b50356001600160a01b0316610676565b6101f7600480360360208110156102ef57600080fd5b50356001600160a01b0316610706565b6100d46004803603602081101561031557600080fd5b50356001600160a01b031661073c565b61032d6105b4565b61036c576040805162461bcd60e51b81526020600482018190526024820152600080516020610856833981519152604482015290519081900360640190fd5b6001600160a01b0381166103b8576040805162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a59081dd85b1b195d60921b604482015290519081900360640190fd5b6001600160a01b038116600081815260026020526040808220805460ff19166001179055517f62c004bc1f4bc27167c7b89f7999c1530fab3eb1bc3b32a8f961cad663afabb69190a250565b61040c6105b4565b61044b576040805162461bcd60e51b81526020600482018190526024820152600080516020610856833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61049d6105b4565b6104dc576040805162461bcd60e51b81526020600482018190526024820152600080516020610856833981519152604482015290519081900360640190fd5b60005b818110156105135761050b8383838181106104f657fe5b905060200201356001600160a01b0316610676565b6001016104df565b505050565b60018054604080516020600284861615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561059d5780601f106105725761010080835404028352916020019161059d565b820191906000526020600020905b81548152906001019060200180831161058057829003601f168201915b505050505081565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b60006105d084610706565b80156105e057506105e083610706565b80156105f057506105f082610706565b949350505050565b6106006105b4565b61063f576040805162461bcd60e51b81526020600482018190526024820152600080516020610856833981519152604482015290519081900360640190fd5b60005b818110156105135761066e83838381811061065957fe5b905060200201356001600160a01b0316610325565b600101610642565b61067e6105b4565b6106bd576040805162461bcd60e51b81526020600482018190526024820152600080516020610856833981519152604482015290519081900360640190fd5b6001600160a01b038116600081815260026020526040808220805460ff19169055517f85969738510cb6e6555620dd854891d7ded5600db5136d59b4c71fb52ce6075b9190a250565b60006001600160a01b038216158061073657506001600160a01b03821660009081526002602052604090205460ff165b92915050565b6107446105b4565b610783576040805162461bcd60e51b81526020600482018190526024820152600080516020610856833981519152604482015290519081900360640190fd5b61078c8161078f565b50565b6001600160a01b0381166107d45760405162461bcd60e51b81526004018080602001828103825260268152602001806108306026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b039290921691909117905556fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a265627a7a72315820cc8a4a8359d1fca18844f935ff5342e2e12fb5dd5470d8026a5cd910e94b80ad64736f6c634300051000324f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734163636573734c697374206f776e6572206973206e6f7420617574686f72697a65644f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572417574686f72697a61626c653a2041646472657373206973206e6f7420617574686f72697a6564a265627a7a72315820a67a22f06ebdd2346ca3e3c771451b6866ae43cc5593322cce7f893bd35efb5c64736f6c63430005100032
Deployed Bytecode Sourcemap
46379:2610:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46379:2610:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46803:597;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;46803:597:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;46803:597:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;46803:597:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;46803:597:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;46803:597:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;46803:597:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;46803:597:0;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;46803:597:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;46803:597:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;46803:597:0;;-1:-1:-1;46803:597:0;-1:-1:-1;46803:597:0;:::i;:::-;;48848:136;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;48848:136:0;;;;;;;;;;;;;;;;;3030:147;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3030:147:0;-1:-1:-1;;;;;3030:147:0;;:::i;1718:140::-;;;:::i;48335:367::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;48335:367:0;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;48335:367:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;48335:367:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;48335:367:0;;-1:-1:-1;48335:367:0;-1:-1:-1;48335:367:0;;;;;;-1:-1:-1;;;;;48335:367:0;;:::i;907:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;907:79:0;;;;;;;;;;;;;;1273:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;47828:499;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;47828:499:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;47828:499:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;47828:499:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;47828:499:0;;-1:-1:-1;47828:499:0;-1:-1:-1;47828:499:0;:::i;2878:144::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2878:144:0;-1:-1:-1;;;;;2878:144:0;;:::i;48710:130::-;;;:::i;47408:412::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;47408:412:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;47408:412:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;47408:412:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;47408:412:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;47408:412:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;47408:412:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;47408:412:0;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;47408:412:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;47408:412:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;47408:412:0;;-1:-1:-1;47408:412:0;-1:-1:-1;47408:412:0;;;-1:-1:-1;;;;;47408:412:0;;;;;;;;;;;;:::i;2013:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2013:109:0;-1:-1:-1;;;;;2013:109:0;;:::i;3185:113::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3185:113:0;-1:-1:-1;;;;;3185:113:0;;:::i;46803:597::-;2689:10;2678:22;;;;:10;:22;;;;;;;;2670:74;;;;-1:-1:-1;;;2670:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47001:9;47041:5;;47048:7;;47057:9;47068:5;;47075:10;47021:65;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;47021:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1:33:-1;99:1;81:16;;;74:27;137:4;117:14;-1:-1;;113:30;157:16;;;47021:65:0;;;;;;;;;;;-1:-1:-1;47021:65:0;;;;;1:33:-1;99:1;81:16;;;74:27;137:4;117:14;-1:-1;;113:30;157:16;;;47021:65:0;;;;;;;;;;;-1:-1:-1;47021:65:0;;;;;1:33:-1;99:1;81:16;;;74:27;;;47021:65:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;47021:65:0;;;;-1:-1:-1;47021:65:0;-1:-1:-1;99:1;;-1:-1;;;;;;;;;;;47021:65:0;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;47021:65:0;47001:86;;47176:1;-1:-1:-1;;;;;47168:28:0;;47197:7;:5;:7::i;:::-;47168:37;;;;;;;;;;;;;-1:-1:-1;;;;;47168:37:0;-1:-1:-1;;;;;47168:37:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47168:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;47263:6:0;27:10:-1;;39:1;23:18;;45:23;;-1:-1;47263:14:0;;;;;;;;-1:-1:-1;;;;;;47263:14:0;-1:-1:-1;;;;;47263:14:0;;;;;;;;47317:75;;;;;;;;;;;;;47367:12;47317:75;;;;;;;;;;;;;;;47381:10;;-1:-1:-1;47263:14:0;;-1:-1:-1;47317:75:0;;47330:5;;47317:75;;47337:7;;;;47317:75;;47357:5;;;;47317:75;47263:14;47317:75;;;;;;;;47330:5;47317:75;;47330:5;47317:75;1:33:-1;99:1;81:16;;;74:27;137:4;117:14;-1:-1;;113:30;157:16;;;47317:75:0;;;;;;;;;;;-1:-1:-1;47317:75:0;;;;;1:33:-1;99:1;81:16;;;74:27;137:4;117:14;-1:-1;;113:30;157:16;;;47317:75:0;;;;;;;;;;;-1:-1:-1;47317:75:0;;;;;1:33:-1;99:1;81:16;;;74:27;47317:75:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;47317:75:0;;;;-1:-1:-1;47317:75:0;;-1:-1:-1;;;;;;;;;;;;47317:75:0;2755:1;46803:597;;;;;;;:::o;48848:136::-;48925:16;48965:7;48958:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48958:14:0;;;;;;;;;;;;;;;;;;;;;;;48848:136;:::o;3030:147::-;1119:9;:7;:9::i;:::-;1111:54;;;;;-1:-1:-1;;;1111:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1111:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3100:20:0;;3123:5;3100:20;;;:10;:20;;;;;;;;;:28;;-1:-1:-1;;3100:28:0;;;3144:25;;;;;;;;;;;;;;;;;3030:147;:::o;1718:140::-;1119:9;:7;:9::i;:::-;1111:54;;;;;-1:-1:-1;;;1111:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1111:54:0;;;;;;;;;;;;;;;1817:1;1801:6;;1780:40;;-1:-1:-1;;;;;1801:6:0;;;;1780:40;;1817:1;;1780:40;1848:1;1831:19;;-1:-1:-1;;;;;;1831:19:0;;;1718:140::o;48335:367::-;1119:9;:7;:9::i;:::-;1111:54;;;;;-1:-1:-1;;;1111:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1111:54:0;;;;;;;;;;;;;;;48506:20;48519:6;48506:12;:20::i;:::-;48498:67;;;;-1:-1:-1;;;48498:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48580:7;27:10:-1;;39:1;23:18;;45:23;;-1:-1;48580:25:0;;;;;;;;-1:-1:-1;;;;;;48580:25:0;-1:-1:-1;;;;;48580:25:0;;;;;;;;;48625:65;;;48580:25;48625:65;;;;;;;;;;;;;;;;;;;;48656:11;;48625:65;;;;;;;;48656:11;48625:65;;48656:11;48625:65;1:33:-1;99:1;81:16;;;74:27;48625:65:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;48625:65:0;;;;-1:-1:-1;48625:65:0;;-1:-1:-1;;;;;48625:65:0;48335:367;;;;;:::o;907:79::-;945:7;972:6;-1:-1:-1;;;;;972:6:0;907:79;:::o;1273:92::-;1313:4;1351:6;-1:-1:-1;;;;;1351:6:0;1337:10;:20;;1273:92::o;47828:499::-;2689:10;2678:22;;;;:10;:22;;;;;;;;2670:74;;;;-1:-1:-1;;;2670:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47979:10;48020:11;;48000:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1:33:-1;99:1;81:16;;;74:27;;;48000:32:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;48000:32:0;;;;-1:-1:-1;48000:32:0;-1:-1:-1;99:1;;-1:-1;;;48000:32:0;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;48094:41:0;;;-1:-1:-1;;;48094:41:0;;48124:10;48094:41;;;;;;47979:54;;-1:-1:-1;;;;;;48094:29:0;;;;;:41;;;;;-1:-1:-1;;48094:41:0;;;;;;;;-1:-1:-1;48094:29:0;:41;;;5:2:-1;;;;30:1;27;20:12;5:2;48094:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;48199:7:0;27:10:-1;;39:1;23:18;;45:23;;-1:-1;48199:16:0;;;;;;;;-1:-1:-1;;;;;;48199:16:0;-1:-1:-1;;;;;48199:16:0;;;;;;;;48255:60;;;48290:12;48199:16;48255:60;;;;;;;;;;;;;;48304:10;;-1:-1:-1;48199:16:0;;-1:-1:-1;48255:60:0;;48277:11;;48255:60;;;;;;48277:11;48255:60;;48277:11;48255:60;1:33:-1;99:1;81:16;;;74:27;48255:60:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;48255:60:0;;;;-1:-1:-1;48255:60:0;;-1:-1:-1;;;;;48255:60:0;2755:1;47828:499;;:::o;2878:144::-;1119:9;:7;:9::i;:::-;1111:54;;;;;-1:-1:-1;;;1111:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1111:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;2947:20:0;;;;;;2970:4;2947:20;;;;;;;;;:27;;-1:-1:-1;;2947:27:0;;;;;;;2990:24;;;;;;;;;;;;;;;;;2878:144;:::o;48710:130::-;48782:16;48822:6;48815:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48815:13:0;;;;;;;;;;;;;;;;;;;;;;48710:130;:::o;47408:412::-;1119:9;:7;:9::i;:::-;1111:54;;;;;-1:-1:-1;;;1111:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1111:54:0;;;;;;;;;;;;;;;47628:20;47641:6;47628:12;:20::i;:::-;47620:62;;;;;-1:-1:-1;;;47620:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;47697:6;27:10:-1;;39:1;23:18;;45:23;;-1:-1;47697:19:0;;;;;;;;-1:-1:-1;;;;;;47697:19:0;-1:-1:-1;;;;;47697:19:0;;;;;;;;;47736:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47749:5;;47736:76;;47756:7;;;;47736:76;;47776:5;;;;47736:76;;;47697:19;47736:76;;;;;;;;47749:5;47736:76;;47749:5;47736:76;1:33:-1;99:1;81:16;;;74:27;137:4;117:14;-1:-1;;113:30;157:16;;;47736:76:0;;;;;;;;;;;-1:-1:-1;47736:76:0;;;;;1:33:-1;99:1;81:16;;;74:27;137:4;117:14;-1:-1;;113:30;157:16;;;47736:76:0;;;;;;;;;;;-1:-1:-1;47736:76:0;;;;;1:33:-1;99:1;81:16;;;74:27;47736:76:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;47736:76:0;;;;-1:-1:-1;47736:76:0;;-1:-1:-1;;;;;;;;;;;;47736:76:0;47408:412;;;;;;;;;;:::o;2013:109::-;1119:9;:7;:9::i;:::-;1111:54;;;;;-1:-1:-1;;;1111:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1111:54:0;;;;;;;;;;;;;;;2086:28;2105:8;2086:18;:28::i;:::-;2013:109;:::o;3185:113::-;-1:-1:-1;;;;;3270:20:0;3246:4;3270:20;;;:10;:20;;;;;;;;;3185:113::o;2228:229::-;-1:-1:-1;;;;;2302:22:0;;2294:73;;;;-1:-1:-1;;;2294:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2404:6;;;2383:38;;-1:-1:-1;;;;;2383:38:0;;;;2404:6;;;2383:38;;;2432:6;:17;;-1:-1:-1;;;;;;2432:17:0;-1:-1:-1;;;;;2432:17:0;;;;;;;;;;2228:229::o;46379:2610::-;;;;;;;;:::o;:::-;;;;;;;;:::o
Swarm Source
bzzr://a67a22f06ebdd2346ca3e3c771451b6866ae43cc5593322cce7f893bd35efb5c
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.